Class DuplicateLegException

  • All Implemented Interfaces:
    java.io.Serializable

    public class DuplicateLegException
    extends java.lang.Exception
    Exception thrown if a Leg already exists with the supplied name in during importing, creating or forking process.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      DuplicateLegException()  
      DuplicateLegException​(java.lang.String message)
      Create a DuplicateLegException with a detail message.
      DuplicateLegException​(java.lang.String message, java.lang.Throwable cause)
      Create a DuplicateLegException with a detail message and cause.
      DuplicateLegException​(java.lang.Throwable cause)
      Create a DuplicateLegException with a cause.
    • Method Summary

      • 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

      • DuplicateLegException

        public DuplicateLegException()
      • DuplicateLegException

        public DuplicateLegException​(java.lang.String message)
        Create a DuplicateLegException with a detail message.
        Parameters:
        message - the detail message.
      • DuplicateLegException

        public DuplicateLegException​(java.lang.Throwable cause)
        Create a DuplicateLegException with a cause.
        Parameters:
        cause - the reason this exception was thrown.
      • DuplicateLegException

        public DuplicateLegException​(java.lang.String message,
                                     java.lang.Throwable cause)
        Create a DuplicateLegException with a detail message and cause.
        Parameters:
        message - the detail message.
        cause - the reason this exception was thrown.