Package org.apache.juneau
Class BeanRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.juneau.BasicRuntimeException
org.apache.juneau.BeanRuntimeException
- All Implemented Interfaces:
- Serializable
General bean runtime operation exception.
 
See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionBeanRuntimeException(Class<?> c, String message, Object... args) Constructor.BeanRuntimeException(String message) Constructor.BeanRuntimeException(String message, Object... args) Constructor.BeanRuntimeException(Throwable cause) Constructor.BeanRuntimeException(Throwable cause, Class<?> c, String message, Object... args) Constructor.
- 
Method SummaryMethods inherited from class org.apache.juneau.BasicRuntimeExceptionassertModifiable, fillInStackTrace, getCause, getMessage, initCause, isUnmodifiable, setMessage, setStackTrace, setUnmodifiable, unwrapMethods inherited from class java.lang.ThrowableaddSuppressed, getCause, getLocalizedMessage, getStackTrace, getSuppressed, printStackTrace, printStackTrace, printStackTrace, toString
- 
Constructor Details- 
BeanRuntimeExceptionConstructor.- Parameters:
- cause- The cause of this exception.
- c- The class name of the bean that caused the exception.
- message- The- MessageFormat-style message.
- args- Optional- MessageFormat-style arguments.
 
- 
BeanRuntimeExceptionConstructor.- Parameters:
- message- The error message.
 
- 
BeanRuntimeExceptionConstructor.- Parameters:
- message- The error message.
- args- Arguments passed in to the- String.format()method.
 
- 
BeanRuntimeExceptionConstructor.- Parameters:
- c- The class name of the bean that caused the exception.
- message- The error message.
- args- Arguments passed in to the- String.format()method.
 
- 
BeanRuntimeExceptionConstructor.- Parameters:
- cause- The initial cause of the exception.
 
 
-