Class AdminProcessingException

  • All Implemented Interfaces:
    Serializable

    public final class AdminProcessingException
    extends AdminException
    An AdminProcessingException indicates that an error occured during processing as a result of user input. This exception is the result of handling an invalid user request, not the result of an internal error.

    This exception class is capable of containing multiple exceptions. See AdminException for details.

    See Also:
    Serialized Form
    • Constructor Detail

      • AdminProcessingException

        public AdminProcessingException()
        No-arg ctor.
        Since:
        4.3
      • AdminProcessingException

        public AdminProcessingException​(String msg)
        Construct with a message.
        Parameters:
        msg - the error message.
        Since:
        4.3
      • AdminProcessingException

        public AdminProcessingException​(Throwable cause)
      • AdminProcessingException

        public AdminProcessingException​(BundleUtil.Event code,
                                        String msg)
        Construct with an optional error code and a message.
        Parameters:
        code - an optional error code
        msg - the error message.
        Since:
        4.3
      • AdminProcessingException

        public AdminProcessingException​(String msg,
                                        Throwable cause)