- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- eu.ess.xaos.tools.annotation.MissinBundleException
-
- All Implemented Interfaces:
Serializable
public class MissinBundleException extends RuntimeException
- Author:
- claudio.rosati@esss.se
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MissinBundleException()
Creates a new instance ofMissinBundleException
without detail message.MissinBundleException(String message)
Constructs an instance ofMissinBundleException
with the specified detailmessage
.MissinBundleException(String message, Throwable cause)
Constructs an instance ofMissinBundleException
with the specified detailmessage
andcause
.MissinBundleException(Throwable cause)
Creates a new instance ofMissinBundleException
with the specificcause
, but without detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
MissinBundleException
public MissinBundleException()
Creates a new instance ofMissinBundleException
without detail message.
-
MissinBundleException
public MissinBundleException(String message)
Constructs an instance ofMissinBundleException
with the specified detailmessage
.- Parameters:
message
- The detail message.
-
MissinBundleException
public MissinBundleException(Throwable cause)
Creates a new instance ofMissinBundleException
with the specificcause
, but without detail message.- Parameters:
cause
- The original exception that caused this one.
-
-