FileDocCategorySizeDatePackage
LogicErrorException.javaAPI DocGlassfish v2 API3831Fri May 04 22:36:38 BST 2007com.sun.jts.CosTransactions

LogicErrorException

public class LogicErrorException extends Throwable
This class provides an exception which can be thrown to indicate that some sort of logic error has occurred.
version
0.01
author
Simon Holdsworth, IBM Corporation
see

Fields Summary
String
reason
Constructors Summary
LogicErrorException(String reason)
Constructs the LogicErrorException with a reason string.

param
reason The reason identifier.
return
see


                        
      
        super();
    
Methods Summary
public java.lang.StringtoString()
Converts the LogicErrorException to a string.

param
return
The string representation.
see

        return super.toString() + ", reason("/*#Frozen*/ + reason + ")"/*#Frozen*/;