Package org.apache.juneau
Class ClassMetaRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.juneau.BasicRuntimeException
org.apache.juneau.ClassMetaRuntimeException
- All Implemented Interfaces:
Serializable
General class metadata runtime operation exception.
See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionClassMetaRuntimeException(Class<?> c, String message, Object... args) Shortcut for callingnew ClassMetaRuntimeException(String.format(c.getName() +": " + message, args));ClassMetaRuntimeException(String message) Constructor.ClassMetaRuntimeException(String message, Object... args) Constructor.Constructor.ClassMetaRuntimeException(Throwable cause, Class<?> c, String message, Object... args) Constructor. -
Method Summary
Methods inherited from class org.apache.juneau.BasicRuntimeException
assertModifiable, fillInStackTrace, getCause, getMessage, initCause, isUnmodifiable, setMessage, setStackTrace, setUnmodifiable, unwrapMethods inherited from class java.lang.Throwable
addSuppressed, getCause, getLocalizedMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, toString
-
Constructor Details
-
ClassMetaRuntimeException
Constructor.- Parameters:
cause- The cause of this exception.c- The class name of the bean that caused the exception.message- TheMessageFormat-style message.args- OptionalMessageFormat-style arguments.
-
ClassMetaRuntimeException
Constructor.- Parameters:
message- The error message.
-
ClassMetaRuntimeException
Constructor.- Parameters:
message- The error message.args- Arguments passed in to theString.format()method.
-
ClassMetaRuntimeException
Shortcut for callingnew ClassMetaRuntimeException(String.format(c.getName() +": " + message, args));- Parameters:
c- The class name of the bean that caused the exception.message- The error message.args- Arguments passed in to theString.format()method.
-
ClassMetaRuntimeException
Constructor.- Parameters:
cause- The initial cause of the exception.
-