org.apache.commons.math
Class MathConfigurationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.apache.commons.math.MathException
              extended by org.apache.commons.math.MathConfigurationException
All Implemented Interfaces:
java.io.Serializable

public class MathConfigurationException
extends MathException
implements java.io.Serializable

Signals a configuration problem with any of the factory methods.

Version:
$Revision: 620312 $ $Date: 2008-02-10 12:28:59 -0700 (Sun, 10 Feb 2008) $
See Also:
Serialized Form

Constructor Summary
MathConfigurationException()
          Default constructor.
MathConfigurationException(java.lang.String message)
          Deprecated. as of 1.2, replaced by MathConfigurationException(String, Object[])
MathConfigurationException(java.lang.String pattern, java.lang.Object[] arguments)
          Constructs an exception with specified formatted detail message.
MathConfigurationException(java.lang.String pattern, java.lang.Object[] arguments, java.lang.Throwable cause)
          Constructs an exception with specified formatted detail message and root cause.
MathConfigurationException(java.lang.String message, java.lang.Throwable cause)
          Deprecated. as of 1.2, replaced by MathConfigurationException(String, Object[], Throwable)
MathConfigurationException(java.lang.Throwable cause)
          Create an exception with a given root cause.
 
Method Summary
 
Methods inherited from class org.apache.commons.math.MathException
getArguments, getCause, getMessage, getPattern, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MathConfigurationException

public MathConfigurationException()
Default constructor.


MathConfigurationException

public MathConfigurationException(java.lang.String message)
Deprecated. as of 1.2, replaced by MathConfigurationException(String, Object[])

Construct an exception with the given message.

Parameters:
message - descriptive error message

MathConfigurationException

public MathConfigurationException(java.lang.String pattern,
                                  java.lang.Object[] arguments)
Constructs an exception with specified formatted detail message. Message formatting is delegated to MessageFormat.

Parameters:
pattern - format specifier
arguments - format arguments
Since:
1.2

MathConfigurationException

public MathConfigurationException(java.lang.String message,
                                  java.lang.Throwable cause)
Deprecated. as of 1.2, replaced by MathConfigurationException(String, Object[], Throwable)

Construct an exception with the given message and root cause.

Parameters:
message - descriptive error message
cause - the exception or error that caused this exception to be thrown

MathConfigurationException

public MathConfigurationException(java.lang.Throwable cause)
Create an exception with a given root cause.

Parameters:
cause - the exception or error that caused this exception to be thrown

MathConfigurationException

public MathConfigurationException(java.lang.String pattern,
                                  java.lang.Object[] arguments,
                                  java.lang.Throwable cause)
Constructs an exception with specified formatted detail message and root cause. Message formatting is delegated to MessageFormat.

Parameters:
pattern - format specifier
arguments - format arguments
cause - the exception or error that caused this exception to be thrown
Since:
1.2


Copyright © 2003-2008 The Apache Software Foundation. All Rights Reserved.