Class BeanRuntimeException

All Implemented Interfaces:
Serializable

public final class BeanRuntimeException extends BasicRuntimeException
General bean runtime operation exception.
See Also:
  • Constructor Details

    • BeanRuntimeException

      public BeanRuntimeException(Throwable cause, Class<?> c, String message, Object... args)
      Constructor.
      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.
    • BeanRuntimeException

      public BeanRuntimeException(String message)
      Constructor.
      Parameters:
      message - The error message.
    • BeanRuntimeException

      public BeanRuntimeException(String message, Object... args)
      Constructor.
      Parameters:
      message - The error message.
      args - Arguments passed in to the String.format() method.
    • BeanRuntimeException

      public BeanRuntimeException(Class<?> c, String message, Object... args)
      Constructor.
      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.
    • BeanRuntimeException

      Constructor.
      Parameters:
      cause - The initial cause of the exception.