reservations
Class ItineraryException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--reservations.ReservationException
                          |
                          +--reservations.ItineraryException
All Implemented Interfaces:
java.io.Serializable

public class ItineraryException
extends ReservationException

Thrown when Itinerary pre-conditions have not been met.

See Also:
Serialized Form

Constructor Summary
ItineraryException()
          Constructs an ItineraryException with no message string
ItineraryException(java.lang.String message)
          Constructs an ItineraryException with the specified message string.
ItineraryException(java.lang.String message, java.lang.Exception e)
          Constructs an ItineraryException with the specified message string and encapsulating some other Exception.
 
Methods inherited from class reservations.ReservationException
toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ItineraryException

public ItineraryException()
Constructs an ItineraryException with no message string


ItineraryException

public ItineraryException(java.lang.String message)
Constructs an ItineraryException with the specified message string.


ItineraryException

public ItineraryException(java.lang.String message,
                          java.lang.Exception e)
Constructs an ItineraryException with the specified message string and encapsulating some other Exception.