Class TicketResubmitOperationFailedException

  • All Implemented Interfaces:
    TicketProvider, java.io.Serializable

    public class TicketResubmitOperationFailedException
    extends OperationFailedException
    implements TicketProvider

    An TicketResubmitOperationFailedException is thrown by a TicketResubmitOperation if the operation execution has failed.

    Since:
    11.22
    See Also:
    Serialized Form
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected User agent  
      protected Ticket ticket  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      User getAgent()  
      Ticket getTicket()
      Returns the ticket
      • 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
    • Field Detail

      • ticket

        protected final transient Ticket ticket
      • agent

        protected final transient User agent
    • Constructor Detail

      • TicketResubmitOperationFailedException

        public TicketResubmitOperationFailedException​(java.lang.String message,
                                                      Ticket ticket,
                                                      User agent)
        Parameters:
        message - the error message
        ticket - the ticket of the failed resubmit operation
        agent - the target user of the failed resubmit operation
        Since:
        11.22
      • TicketResubmitOperationFailedException

        public TicketResubmitOperationFailedException​(java.lang.String message,
                                                      java.lang.Throwable cause,
                                                      Ticket ticket,
                                                      User agent)
        Parameters:
        message - the error message
        cause - the cause of the exception
        ticket - the ticket of the failed resubmit operation
        agent - the target user of the failed resubmit operation
        Since:
        11.22
    • Method Detail

      • getAgent

        public User getAgent()
        Returns:
        the agent that has been assigned by the resubmit operation
        Since:
        11.22