org.apfloat
Class ApfloatRuntimeException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.apfloat.ApfloatRuntimeException
All Implemented Interfaces:
java.io.Serializable

public class ApfloatRuntimeException
extends java.lang.RuntimeException

Exception indicating some unexpected apfloat implementation specific error situation. This exception can be thrown in different situations, for example:

See Also:
Serialized Form

Constructor Summary
ApfloatRuntimeException()
          Constructs a new apfloat runtime exception with an empty detail message.
ApfloatRuntimeException(java.lang.String message)
          Constructs a new apfloat runtime exception with the specified detail message.
ApfloatRuntimeException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new apfloat runtime exception with the specified detail message and cause.
 
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

ApfloatRuntimeException

public ApfloatRuntimeException()
Constructs a new apfloat runtime exception with an empty detail message.


ApfloatRuntimeException

public ApfloatRuntimeException(java.lang.String message)
Constructs a new apfloat runtime exception with the specified detail message.

Parameters:
message - The detail message.

ApfloatRuntimeException

public ApfloatRuntimeException(java.lang.String message,
                               java.lang.Throwable cause)
Constructs a new apfloat runtime exception with the specified detail message and cause.

Parameters:
message - The detail message.
cause - Originating cause of the exception.