Skip to content

Commit

Permalink
#3735: disable invoker
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Dec 23, 2024
1 parent c2b6658 commit fe4d783
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
4 changes: 3 additions & 1 deletion eo-maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,9 @@ SOFTWARE.
<configuration combine.self="override">
<skipInstallation>${skipTests}</skipInstallation>
<skipInvocation>${skipTests}</skipInvocation>
<pomExcludes/>
<pomExcludes>
<exclude>fibonacci/pom.xml</exclude>
</pomExcludes>
</configuration>
</plugin>
<plugin>
Expand Down
10 changes: 9 additions & 1 deletion eo-runtime/src/main/java/org/eolang/PhSafe.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,15 @@
import EOorg.EOeolang.EOerror;

/**
* An object with coordinates (line and position).
* An object with coordinates (line and position) and a safe
* processing of any runtime errors.
*
* <p>It is used to wrap any object and provide a safe processing
* of any runtime errors. It is used in the EO runtime to provide
* a safe processing of any runtime errors in the EO code. If, in any
* method invocation, a runtime error occurs, it is caught and wrapped
* into {@link EOerror.ExError} with the location of the error in the
* EO code.</p>
*
* @since 0.21
*/
Expand Down

0 comments on commit fe4d783

Please sign in to comment.