| Copyright | (c) Erich Gut |
|---|---|
| License | BSD3 |
| Maintainer | zerich.gut@gmail.com |
| Safe Haskell | Safe-Inferred |
| Language | Haskell2010 |
OAlg.Structure.Exception
Description
arithmetic exceptions.
Documentation
data ArithmeticException Source #
arithmetic exceptions which are sub exceptions from SomeOAlgException.
Constructors
| NotAddable | |
| NotMultiplicable | |
| NotInvertible | |
| UndefinedScalarproduct | |
| NotExponential | |
| NotEndo | |
| NotTransformable | |
| NoMinusOne | |
| NotApplicable |
Instances
| Exception ArithmeticException Source # | |
Defined in OAlg.Structure.Exception Methods toException :: ArithmeticException -> SomeException # fromException :: SomeException -> Maybe ArithmeticException # | |
| Show ArithmeticException Source # | |
Defined in OAlg.Structure.Exception Methods showsPrec :: Int -> ArithmeticException -> ShowS # show :: ArithmeticException -> String # showList :: [ArithmeticException] -> ShowS # | |
| Eq ArithmeticException Source # | |
Defined in OAlg.Structure.Exception Methods (==) :: ArithmeticException -> ArithmeticException -> Bool # (/=) :: ArithmeticException -> ArithmeticException -> Bool # | |