Reference Guide > Java APIs for Custom Procedures > CustomProcedureException
 
CustomProcedureException
This exception is thrown by the methods of the extended APIs in the package com.compositesw.extension. For a summary of the extended APIs, see Interface Summary.
public class CustomProcedureException
 
This exception extends Exception.
Constructor Summary
Constructor Detail
CustomProcedureException
public CustomProcedureException()
 
This is an empty constructor.
 
CustomProcedureException
public CustomProcedureException(String message)
 
This exception is thrown with a description of the error.
Parameter
message—Description of the error.
 
CustomProcedureException
CustomProcedureException(String message, Throwable cause)
 
This exception is thrown with descriptions of the error and the error’s cause.
Parameters
message—Description of the error.
 
cause—Explanation of what caused the error.
CustomProcedureException
CustomProcedureException(Throwable cause)
 
This exception is thrown with a description of the error’s cause.
Parameter
cause—Explanation of what caused the error.