| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
PlutusCore.Evaluation.Machine.Exception
Description
The exceptions that an abstract machine can throw.
Synopsis
- newtype UnliftingError = MkUnliftingError {
| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
PlutusCore.Evaluation.Machine.Exception
Description
The exceptions that an abstract machine can throw.
data BuiltinError #
The type of errors that readKnown and makeKnown can return.
| Show BuiltinError # | |
Defined in PlutusCore.Builtin.Result Methods showsPrec :: Int -> BuiltinError -> ShowS # show :: BuiltinError -> String # showList :: [BuiltinError] -> ShowS # | |
| Eq BuiltinError # | |
Defined in PlutusCore.Builtin.Result | |
| Pretty BuiltinError # | |
Defined in PlutusCore.Builtin.Result | |
| MonadError BuiltinError BuiltinResult # |
|
Defined in PlutusCore.Builtin.Result Methods throwError :: BuiltinError -> BuiltinResult a # catchError :: BuiltinResult a -> (BuiltinError -> BuiltinResult a) -> BuiltinResult a # | |
data MachineError fun #
Errors which can occur during a run of an abstract machine.
Constructors
| NonPolymorphicInstantiationMachineError | An attempt to reduce a not immediately reducible type instantiation. |
| NonWrapUnwrappedMachineError | An attempt to unwrap a not wrapped term. |
| NonFunctionalApplicationMachineError | An attempt to reduce a not immediately reducible application. |
| OpenTermEvaluatedMachineError | An attempt to evaluate an open term. |
| UnliftingMachineError UnliftingError | An attempt to compute a constant application resulted in |
| BuiltinTermArgumentExpectedMachineError | A builtin expected a term argument, but something else was received. |
| UnexpectedBuiltinTermArgumentMachineError | A builtin received a term argument when something else was expected |
| NonConstrScrutinizedMachineError | An attempt to scrutinize a non-constr. |
| MissingCaseBranchMachineError Word64 | An attempt to go into a non-existent case branch. |
| PanicMachineError String | A GHC exception was thrown. |
data EvaluationError structural operational #
The type of errors that can occur during evaluation. There are two kinds of errors:
tailList was applied to a non-list.error was executed, tailList was applied to an empty list or evaluation
ran out of gas.On the chain both of these are just regular failures and we don't distinguish between them there: if a script fails, it fails, it doesn't matter what the reason was. However in the tests it does matter why the failure occurred: a structural error may indicate that the test was written incorrectly while an operational error may be entirely expected.
In other words, structural errors are "runtime type errors" and operational errors are regular runtime errors. Which means that evaluating an (erased) well-typed program should never produce a structural error, only an operational one. This creates a sort of "runtime type system" for UPLC and it would be great to stick to it and enforce in tests etc, but we currently don't.
Constructors
| StructuralError !structural | |
| OperationalError !operational |
| Bifoldable EvaluationError # | |
Defined in PlutusCore.Evaluation.Error Methods bifold :: Monoid m => EvaluationError m m -> m # bifoldMap :: Monoid m => (a -> m) -> (b -> m) -> EvaluationError a b -> m # bifoldr :: (a -> c -> c) -> (b -> c -> c) -> c -> EvaluationError a b -> c # bifoldl :: (c -> a -> c) -> (c -> b -> c) -> c -> EvaluationError a b -> c # | |
| Bifunctor EvaluationError # | |
Defined in PlutusCore.Evaluation.Error Methods bimap :: (a -> b) -> (c -> d) -> EvaluationError a c -> EvaluationError b d # first :: (a -> b) -> EvaluationError a c -> EvaluationError b c # second :: (b -> c) -> EvaluationError a b -> EvaluationError a c # | |
| Bitraversable EvaluationError # | |
Defined in PlutusCore.Evaluation.Error Methods bitraverse :: Applicative f => (a -> f c) -> (b -> f d) -> EvaluationError a b -> f (EvaluationError c d) # | |
| (HasPrettyDefaults config ~ 'True, PrettyBy config structural, Pretty operational) => PrettyBy config (EvaluationError structural operational) # | |
Defined in PlutusCore.Evaluation.Error Methods prettyBy :: config -> EvaluationError structural operational -> Doc ann # prettyListBy :: config -> [EvaluationError structural operational] -> Doc ann # | |
| Functor (EvaluationError structural) # | |
Defined in PlutusCore.Evaluation.Error Methods fmap :: (a -> b) -> EvaluationError structural a -> EvaluationError structural b # (<$) :: a -> EvaluationError structural b -> EvaluationError structural a # | |
| Generic (EvaluationError structural operational) # | |
Defined in PlutusCore.Evaluation.Error Associated Types type Rep (EvaluationError structural operational) :: Type -> Type # Methods from :: EvaluationError structural operational -> Rep (EvaluationError structural operational) x # to :: Rep (EvaluationError structural operational) x -> EvaluationError structural operational # | |
| (Show structural, Show operational) => Show (EvaluationError structural operational) # | |
Defined in PlutusCore.Evaluation.Error Methods showsPrec :: Int -> EvaluationError structural operational -> ShowS # show :: EvaluationError structural operational -> String # showList :: [EvaluationError structural operational] -> ShowS # | |
| (NFData structural, NFData operational) => NFData (EvaluationError structural operational) # | |
Defined in PlutusCore.Evaluation.Error Methods rnf :: EvaluationError structural operational -> () # | |
| (Eq structural, Eq operational) => Eq (EvaluationError structural operational) # | |
Defined in PlutusCore.Evaluation.Error Methods (==) :: EvaluationError structural operational -> EvaluationError structural operational -> Bool # (/=) :: EvaluationError structural operational -> EvaluationError structural operational -> Bool # | |
| (Pretty structural, Pretty operational) => Pretty (EvaluationError structural operational) # | |
Defined in PlutusCore.Evaluation.Error Methods pretty :: EvaluationError structural operational -> Doc ann # prettyList :: [EvaluationError structural operational] -> Doc ann # | |
| ThrowableBuiltins uni fun => MonadError (CekEvaluationException NamedDeBruijn uni fun) (CekM uni fun s) # | |
Defined in UntypedPlutusCore.Evaluation.Machine.Cek.Internal Methods throwError :: CekEvaluationException NamedDeBruijn uni fun -> CekM uni fun s a # catchError :: CekM uni fun s a -> (CekEvaluationException NamedDeBruijn uni fun -> CekM uni fun s a) -> CekM uni fun s a # | |
| type Rep (EvaluationError structural operational) # | |
Defined in PlutusCore.Evaluation.Error type Rep (EvaluationError structural operational) = D1 ('MetaData "EvaluationError" "PlutusCore.Evaluation.Error" "plutus-core-1.60.0.0-inplace" 'False) (C1 ('MetaCons "StructuralError" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 structural)) :+: C1 ('MetaCons "OperationalError" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'SourceStrict 'DecidedStrict) (Rec0 operational))) | |
data ErrorWithCause err cause #
An error and (optionally) what caused it.
Constructors
| ErrorWithCause | |
type EvaluationException structural operational = ErrorWithCause (EvaluationError structural operational) #
throwErrorWithCause :: MonadError (ErrorWithCause e cause) m => e -> cause -> m x #
splitStructuralOperational :: Either (EvaluationException structural operational term) a -> Either (ErrorWithCause structural term) (EvaluationResult a) #
Preserve the contents of an StructuralError as a Left and turn an
OperationalError into a Right EvaluationFailure (thus erasing the content of the
error in the latter case).
unsafeSplitStructuralOperational :: (PrettyPlc structural, PrettyPlc term, Typeable structural, Typeable term) => Either (EvaluationException structural operational term) a -> EvaluationResult a #
Throw on a StructuralError and turn an OperationalError into an
EvaluationFailure (thus erasing the content of the error in the latter case).
class BuiltinErrorToEvaluationError structural operational #
Minimal complete definition
| BuiltinErrorToEvaluationError (MachineError fun) CekUserError # | |
Defined in UntypedPlutusCore.Evaluation.Machine.Cek.Internal Methods builtinErrorToEvaluationError :: BuiltinError -> EvaluationError (MachineError fun) CekUserError # | |
builtinErrorToEvaluationError :: BuiltinErrorToEvaluationError structural operational => BuiltinError -> EvaluationError structural operational #
throwBuiltinErrorWithCause :: (MonadError (EvaluationException structural operational cause) m, BuiltinErrorToEvaluationError structural operational) => cause -> BuiltinError -> m void #
Attach a cause to a BuiltinError and throw that.
Note that an evaluator might require the cause to be computed lazily for best performance on the
happy path, hence this function must not force its first argument.
TODO: wrap cause in Lazy once we have it.