Class NucleusCanRetryException

  • All Implemented Interfaces:
    java.io.Serializable

    public class NucleusCanRetryException
    extends NucleusException
    Exception thrown when a retriable error occurs.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      NucleusCanRetryException()
      Constructs a new exception without a detail message.
      NucleusCanRetryException​(java.lang.String msg)
      Constructs a new exception with the specified detail message.
      NucleusCanRetryException​(java.lang.String msg, java.lang.Object failed)
      Constructs a new exception with the specified detail message and failed object.
      NucleusCanRetryException​(java.lang.String msg, java.lang.Throwable nested)
      Constructs a new exception with the specified detail message and nested Throwable.
      NucleusCanRetryException​(java.lang.String msg, java.lang.Throwable[] nested)
      Constructs a new exception with the specified detail message and nested Throwables.
      NucleusCanRetryException​(java.lang.String msg, java.lang.Throwable[] nested, java.lang.Object failed)
      Constructs a new exception with the specified detail message, nested Throwables, and failed object.
      NucleusCanRetryException​(java.lang.String msg, java.lang.Throwable nested, java.lang.Object failed)
      Constructs a new exception with the specified detail message, nested Throwable, and failed object.
    • Constructor Detail

      • NucleusCanRetryException

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

        public NucleusCanRetryException​(java.lang.String msg)
        Constructs a new exception with the specified detail message.
        Parameters:
        msg - the detail message.
      • NucleusCanRetryException

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

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

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

        public NucleusCanRetryException​(java.lang.String msg,
                                        java.lang.Throwable[] nested,
                                        java.lang.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.
      • NucleusCanRetryException

        public NucleusCanRetryException​(java.lang.String msg,
                                        java.lang.Throwable nested,
                                        java.lang.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.