lab2.Exceptions
Class EmptyQueueException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--lab2.Exceptions.EmptyQueueException
All Implemented Interfaces:
java.io.Serializable

public class EmptyQueueException
extends java.lang.RuntimeException

Eccezione per coda vuota.

See Also:
Serialized Form

Constructor Summary
EmptyQueueException()
          Costruttore dell'eccezione senza messaggi.
EmptyQueueException(java.lang.String msg)
          Costruttore dell'eccezione con messaggio visibile successivamente mediante il metodo getMessage.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

EmptyQueueException

public EmptyQueueException()
Costruttore dell'eccezione senza messaggi.

EmptyQueueException

public EmptyQueueException(java.lang.String msg)
Costruttore dell'eccezione con messaggio visibile successivamente mediante il metodo getMessage.
Parameters:
msg - il messaggio di errore.