Class ClassMetaRuntimeException

All Implemented Interfaces:
Serializable

General class metadata runtime operation exception.
See Also:
  • Constructor Details

    • ClassMetaRuntimeException

      public ClassMetaRuntimeException(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.
    • ClassMetaRuntimeException

      Constructor.
      Parameters:
      message - The error message.
    • ClassMetaRuntimeException

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

      public ClassMetaRuntimeException(Class<?> c, String message, Object... args)
      Shortcut for calling new 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 the String.format() method.
    • ClassMetaRuntimeException

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