Skip to content

Commit

Permalink
Move Failure to convex.core.lang.exception
Browse files Browse the repository at this point in the history
  • Loading branch information
mikera committed Aug 26, 2024
1 parent c95e508 commit 5909014
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion convex-core/src/main/java/convex/core/lang/Context.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
import convex.core.data.prim.CVMLong;
import convex.core.data.type.AType;
import convex.core.data.util.BlobBuilder;
import convex.core.exceptions.Failure;
import convex.core.init.Init;
import convex.core.lang.exception.AExceptional;
import convex.core.lang.exception.AThrowable;
import convex.core.lang.exception.ATrampoline;
import convex.core.lang.exception.ErrorValue;
import convex.core.lang.exception.Failure;
import convex.core.lang.exception.HaltValue;
import convex.core.lang.exception.RecurValue;
import convex.core.lang.exception.ReducedValue;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
package convex.core.exceptions;
package convex.core.lang.exception;

import convex.core.ErrorCodes;
import convex.core.data.ACell;
import convex.core.data.Keyword;
import convex.core.data.StringShort;
import convex.core.lang.exception.AThrowable;

/**
* Exceptional value representing a CVM condition the CVM should not catch in user code
Expand Down

0 comments on commit 5909014

Please sign in to comment.