Class EoulsanRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- fr.ens.biologie.genomique.eoulsan.EoulsanRuntimeException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
EoulsanITRuntimeException
public class EoulsanRuntimeException extends RuntimeException
A nestable Eoulsan exception. This class came from from Java Code. In Eoulsan, checked exceptions are generally preferred to RuntimeExceptions, but RuntimeExceptions can be used as a fall-back if you are implementing an interface which doesn't support checked exceptions. If you do this, please document this clearly in the implementing class.- Since:
- 1.0
- Author:
- Laurent Jourdren
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EoulsanRuntimeException()
Create a new EoulsanRuntimeException.EoulsanRuntimeException(String message)
Create a new EoulsanRuntimeException with a message.EoulsanRuntimeException(String message, Throwable cause)
Create a new EoulsanException with a message and a cause.EoulsanRuntimeException(Throwable cause)
Create a new EoulsanException with a cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
EoulsanRuntimeException
public EoulsanRuntimeException()
Create a new EoulsanRuntimeException.
-
EoulsanRuntimeException
public EoulsanRuntimeException(String message)
Create a new EoulsanRuntimeException with a message.- Parameters:
message
- the message
-
EoulsanRuntimeException
public EoulsanRuntimeException(String message, Throwable cause)
Create a new EoulsanException with a message and a cause.- Parameters:
message
- the messagecause
- the cause
-
EoulsanRuntimeException
public EoulsanRuntimeException(Throwable cause)
Create a new EoulsanException with a cause.- Parameters:
cause
- the cause
-
-