Class BootstrapException

  • All Implemented Interfaces:
    java.io.Serializable

    public class BootstrapException
    extends java.lang.Exception
    BootstrapException is a checked exception that wraps an exception thrown by the original target.
    Since:
    UDK 3.1.0
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      BootstrapException()
      Constructs a BootstrapException with null as the target exception.
      BootstrapException​(java.lang.Exception target)
      Constructs a BootstrapException with a target exception.
      BootstrapException​(java.lang.String message)
      Constructs a BootstrapException with the specified detail message.
      BootstrapException​(java.lang.String message, java.lang.Exception target)
      Constructs a BootstrapException with the specified detail message and a target exception.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Exception getTargetException()
      Get the thrown target exception.
      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • BootstrapException

        public BootstrapException()
        Constructs a BootstrapException with null as the target exception.
      • BootstrapException

        public BootstrapException​(java.lang.String message)
        Constructs a BootstrapException with the specified detail message.
        Parameters:
        message - the detail message
      • BootstrapException

        public BootstrapException​(java.lang.String message,
                                  java.lang.Exception target)
        Constructs a BootstrapException with the specified detail message and a target exception.
        Parameters:
        message - the detail message
        target - the target exception
      • BootstrapException

        public BootstrapException​(java.lang.Exception target)
        Constructs a BootstrapException with a target exception.
        Parameters:
        target - the target exception
    • Method Detail

      • getTargetException

        public java.lang.Exception getTargetException()
        Get the thrown target exception.
        Returns:
        the target exception