Class NucleusFatalUserException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
InvalidMetaDataException

public class NucleusFatalUserException extends NucleusUserException
Exception thrown when a user error occurs and is fatal.
See Also:
  • Field Details

  • Constructor Details

    • NucleusFatalUserException

      public NucleusFatalUserException()
      Constructs a new exception without a detail message.
    • NucleusFatalUserException

      public NucleusFatalUserException(String msg)
      Constructs a new exception with the specified detail message.
      Parameters:
      msg - the detail message.
    • NucleusFatalUserException

      public NucleusFatalUserException(String msg, Throwable[] nested)
      Constructs a new exception with the specified detail message and nested Throwables.
      Parameters:
      msg - the detail message.
      nested - the nested Throwable[].
    • NucleusFatalUserException

      public NucleusFatalUserException(String msg, Throwable nested)
      Constructs a new exception with the specified detail message and nested Throwable.
      Parameters:
      msg - the detail message.
      nested - the nested Throwable.
    • NucleusFatalUserException

      public NucleusFatalUserException(String msg, Object failed)
      Constructs a new exception with the specified detail message and failed object.
      Parameters:
      msg - the detail message.
      failed - the failed object.
    • NucleusFatalUserException

      public NucleusFatalUserException(String msg, Throwable[] nested, Object failed)
      Constructs a new exception with the specified detail message, nested Throwables, and failed object.
      Parameters:
      msg - the detail message.
      nested - the nested Throwable[].
      failed - the failed object.
    • NucleusFatalUserException

      public NucleusFatalUserException(String msg, Throwable nested, Object failed)
      Constructs a new exception with the specified detail message, nested Throwable, and failed object.
      Parameters:
      msg - the detail message.
      nested - the nested Throwable.
      failed - the failed object.