Class EoulsanITRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- fr.ens.biologie.genomique.eoulsan.EoulsanRuntimeException
-
- fr.ens.biologie.genomique.eoulsan.EoulsanITRuntimeException
-
- All Implemented Interfaces:
Serializable
public class EoulsanITRuntimeException extends EoulsanRuntimeException
This class define a runtime exception for integration tests.- Since:
- 2.0
- Author:
- Sandrine Perrin
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EoulsanITRuntimeException()
Create a new EoulsanITRuntimeException.EoulsanITRuntimeException(String message)
Create a new EoulsanITRuntimeException with a message.EoulsanITRuntimeException(String message, Throwable cause)
Create a new EoulsanITRuntimeException with a message and a cause.EoulsanITRuntimeException(Throwable cause)
Create a new EoulsanITRuntimeException 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
-
EoulsanITRuntimeException
public EoulsanITRuntimeException()
Create a new EoulsanITRuntimeException.
-
EoulsanITRuntimeException
public EoulsanITRuntimeException(String message)
Create a new EoulsanITRuntimeException with a message.- Parameters:
message
- Exception message
-
EoulsanITRuntimeException
public EoulsanITRuntimeException(String message, Throwable cause)
Create a new EoulsanITRuntimeException with a message and a cause.- Parameters:
message
- the messagecause
- the cause
-
EoulsanITRuntimeException
public EoulsanITRuntimeException(Throwable cause)
Create a new EoulsanITRuntimeException with a cause.- Parameters:
cause
- the cause
-
-