org.apache.qpid.test.framework.clocksynch
Class ClockSynchFailureException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.apache.qpid.test.framework.clocksynch.ClockSynchFailureException
All Implemented Interfaces:
Serializable

public class ClockSynchFailureException
extends Exception

ClockSynchFailureException represents failure of a ClockSynchronizer to achieve synchronization. For example, this could be because a reference signal is not available, or because a desired accurracy cannot be attained.

CRC Card
Responsibilities Collaborations
Represent failure to achieve synchronization.

See Also:
Serialized Form

Constructor Summary
ClockSynchFailureException(String message, Throwable cause)
          Creates a clock synch failure exception.
 
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

ClockSynchFailureException

public ClockSynchFailureException(String message,
                                  Throwable cause)
Creates a clock synch failure exception.

Parameters:
message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method).
cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)


Licensed to the Apache Software Foundation