-
Notifications
You must be signed in to change notification settings - Fork 10
Exceptions Class
Laurent Jourdren edited this page Mar 26, 2015
·
2 revisions
WARNING: This documentation is outdated and will soon be updated.
Eoulsan define 3 exceptions and errors:
-
EoulsanException
is an exception that must be catch by developer (e.g. theconfigure()
method of theStep
class). It is withIOException
the only exception used in Eoulsan code (minus some very specials cases, see below). -
EoulsanRuntimeException
is an exception that is usually not catch by developper. Eoulsan throw it in some exceptional cases like when a call tocontext.getInputDataFormat()
use aDataFormat
that is not in the list of the inputDataFormat
of aStep
. -
EoulsanError
is only use once inAbstractEoulsanRuntime
constructor when theSetting
object in argument is null.