com.localmatters.collector.queue
Class CollectorQueueException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.localmatters.collector.queue.CollectorQueueException
All Implemented Interfaces:
java.io.Serializable

@WebFault
public class CollectorQueueException
extends java.lang.Exception

A collector queue exception.

Author:
Daniel Cavalcanti
See Also:
Serialized Form

Constructor Summary
CollectorQueueException()
          Creates a new instance of CollectorQueueException without detail message.
CollectorQueueException(java.lang.String message)
          Constructs an instance of CollectorQueueException with the specified detail message.
CollectorQueueException(java.lang.String message, java.lang.Throwable cause)
          Constructs an instance of CollectorQueueException with the specified detail message and root cause.
CollectorQueueException(java.lang.Throwable cause)
          Constructs an instance of CollectorQueueException with the specified root cause.
 
Method Summary
 
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
 

Constructor Detail

CollectorQueueException

public CollectorQueueException()
Creates a new instance of CollectorQueueException without detail message.


CollectorQueueException

public CollectorQueueException(java.lang.String message)
Constructs an instance of CollectorQueueException with the specified detail message.

Parameters:
message - The detail message.

CollectorQueueException

public CollectorQueueException(java.lang.Throwable cause)
Constructs an instance of CollectorQueueException with the specified root cause.

Parameters:
cause - The root cause.

CollectorQueueException

public CollectorQueueException(java.lang.String message,
                               java.lang.Throwable cause)
Constructs an instance of CollectorQueueException with the specified detail message and root cause.

Parameters:
message - The detail message.
cause - The root cause.