Class parkingLot.parkingLotOverFlowException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--parkingLot.parkingLotOverFlowException
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
parkingLot

public class parkingLot.parkingLotOverFlowException
extends java.lang.Exception

An embedded exception class designed for handeling an illegal call to enter.

See Also:
Serialized Form

Field Summary
 parkingLot overflowParkingLot
          This field keeps track of the parking lot that caused the exception
 
Constructor Summary
parkingLot.parkingLotOverFlowException(parkingLot p)
          The constructor binds overflowParkingLot to the incoming parkingLot object.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, 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

overflowParkingLot

public parkingLot overflowParkingLot
This field keeps track of the parking lot that caused the exception

Constructor Detail

parkingLot.parkingLotOverFlowException

public parkingLot.parkingLotOverFlowException(parkingLot p)
The constructor binds overflowParkingLot to the incoming parkingLot object.