- 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 ofMissinBundleExceptionwithout detail message.MissinBundleException(String message)Constructs an instance ofMissinBundleExceptionwith the specified detailmessage.MissinBundleException(String message, Throwable cause)Constructs an instance ofMissinBundleExceptionwith the specified detailmessageandcause.MissinBundleException(Throwable cause)Creates a new instance ofMissinBundleExceptionwith 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 ofMissinBundleExceptionwithout detail message.
-
MissinBundleException
public MissinBundleException(String message)
Constructs an instance ofMissinBundleExceptionwith the specified detailmessage.- Parameters:
message- The detail message.
-
MissinBundleException
public MissinBundleException(Throwable cause)
Creates a new instance ofMissinBundleExceptionwith the specificcause, but without detail message.- Parameters:
cause- The original exception that caused this one.
-
-