libcspm-1.0.0: A library providing a parser, type checker and evaluator for CSPM.

Safe HaskellSafe-Inferred

Util.Exception

Synopsis

Documentation

class (Typeable e, Show e) => Exception e

Any type that you wish to throw or catch as an exception must be an instance of the Exception class. The simplest case is a new exception type directly below the root:

 data MyException = ThisException | ThatException
     deriving (Show, Typeable)

 instance Exception MyException

The default method definitions in the Exception class do what we need in this case. You can now throw and catch ThisException and ThatException as exceptions:

*Main> throw ThisException `catch` \e -> putStrLn ("Caught " ++ show (e :: MyException))
Caught ThisException

In more complicated examples, you may wish to define a whole hierarchy of exceptions:

 ---------------------------------------------------------------------
 -- Make the root exception type for all the exceptions in a compiler

 data SomeCompilerException = forall e . Exception e => SomeCompilerException e
     deriving Typeable

 instance Show SomeCompilerException where
     show (SomeCompilerException e) = show e

 instance Exception SomeCompilerException

 compilerExceptionToException :: Exception e => e -> SomeException
 compilerExceptionToException = toException . SomeCompilerException

 compilerExceptionFromException :: Exception e => SomeException -> Maybe e
 compilerExceptionFromException x = do
     SomeCompilerException a <- fromException x
     cast a

 ---------------------------------------------------------------------
 -- Make a subhierarchy for exceptions in the frontend of the compiler

 data SomeFrontendException = forall e . Exception e => SomeFrontendException e
     deriving Typeable

 instance Show SomeFrontendException where
     show (SomeFrontendException e) = show e

 instance Exception SomeFrontendException where
     toException = compilerExceptionToException
     fromException = compilerExceptionFromException

 frontendExceptionToException :: Exception e => e -> SomeException
 frontendExceptionToException = toException . SomeFrontendException

 frontendExceptionFromException :: Exception e => SomeException -> Maybe e
 frontendExceptionFromException x = do
     SomeFrontendException a <- fromException x
     cast a

 ---------------------------------------------------------------------
 -- Make an exception type for a particular frontend compiler exception

 data MismatchedParentheses = MismatchedParentheses
     deriving (Typeable, Show)

 instance Exception MismatchedParentheses where
     toException   = frontendExceptionToException
     fromException = frontendExceptionFromException

We can now catch a MismatchedParentheses exception as MismatchedParentheses, SomeFrontendException or SomeCompilerException, but not other types, e.g. IOException:

*Main> throw MismatchedParentheses catch e -> putStrLn ("Caught " ++ show (e :: MismatchedParentheses))
Caught MismatchedParentheses
*Main> throw MismatchedParentheses catch e -> putStrLn ("Caught " ++ show (e :: SomeFrontendException))
Caught MismatchedParentheses
*Main> throw MismatchedParentheses catch e -> putStrLn ("Caught " ++ show (e :: SomeCompilerException))
Caught MismatchedParentheses
*Main> throw MismatchedParentheses catch e -> putStrLn ("Caught " ++ show (e :: IOException))
*** Exception: MismatchedParentheses

data LibCSPMException Source

Exceptions that cause LibCSPM to abort whatever it is doing.

Constructors

Panic String

An unexpected internal error

SourceError ErrorMessages

An error in the user's input occured

UserError

An error occured. Normally this is caught by the application and then turned into a SourceError.

throwException :: Exception e => e -> aSource

Throws an arbitrary Exception.

class Monad m => MonadIOException m whereSource

A class to allow catching of SourceErrors in arbitrary monads.

Methods

tryM :: MonadIOException m => m a -> m (Either LibCSPMException a)Source

Runs the action, catching any non-fatal LibCSPMExecptions (i.e. non- Panic).

tryM' :: MonadIOException m => m a -> m (Either LibCSPMException a)Source

Runs the action, catching all exceptions including panics.

convertExceptionsToPanics :: MonadIOException m => m a -> m aSource

Converts arbitrary exceptions to panics, rethrowing them.

finally :: MonadIOException m => m a -> m () -> m aSource

Runs the action, running the finaliser if an exception is thrown. The exception is always rethrown.

panic :: String -> aSource

Given a string causes a Panic to be thrown.

throwSourceError :: ErrorMessages -> aSource

Throw an error message as a SourceError.

mkErrorMessage :: SrcSpan -> Doc -> ErrorMessageSource

Given a SrcSpan and a pretty printed Doc creates an ErrorMessage.

mkWarningMessage :: SrcSpan -> Doc -> ErrorMessageSource

Constructs a warning from a SrcSpan and a pretty printed Doc, prepending Warning: to the Doc.

data ErrorMessage Source

An error message that resulted from something in the user's input.

Constructors

ErrorMessage 

Fields

location :: SrcSpan

Used for sorting into order.

Used for sorting into order.

message :: Doc

The message.

The message.

WarningMessage 

Fields

location :: SrcSpan

Used for sorting into order.

Used for sorting into order.

message :: Doc

The message.

The message.