Class MultiException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.jformdesigner.runtime.MultiException
All Implemented Interfaces:
Serializable

public class MultiException extends Exception
Thrown when problems occurred while decoding or encoding a JFormDesigner .jfd file. This class is a container for other exceptions.

Typical exceptions, which may occurred while decoding or encoding, are: IOException, SAXParseException and ClassNotFoundException.

Since:
1.0.1
See Also:
  • Constructor Details

    • MultiException

      public MultiException(String message, Exception[] exceptions)
      Constructs a MultiException.
      Parameters:
      message - The detail message.
      exceptions - The exceptions occurred while decoding or encoding.
    • MultiException

      public MultiException(String message, String contentType, Exception[] exceptions)
      Constructs a MultiException.
      Parameters:
      message - The detail message.
      contentType - The content type of the form, or null.
      exceptions - The exceptions occurred while decoding or encoding.
      Since:
      6.0
  • Method Details

    • getContentType

      public String getContentType()
      Returns the content type of the form model, or null.
      Since:
      6.0
    • getExceptions

      public Exception[] getExceptions()
      Returns the exceptions.
    • getExceptionMessages

      public String getExceptionMessages()