| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception com.sun.jbi.wsdl2.WsdlException
WsdlException | public class WsdlException extends Exception (Code) | | The class represents a WSDL processing exception. The message will contain
details about the error condition encountered.
author: Sun Microsystems, Inc. |
Constructor Summary | |
public | WsdlException(String message) Construct a WSDL exception with a simple error message string. | public | WsdlException(String template, Object[] params) Construct a WSDL exception with a parameterised error message string. |
Method Summary | |
protected static String | replaceTemplateParameters(String template, Object[] params) Helper function to replace the parameters given in the template given.
Parameters: template - Message text template. Parameters: params - The parameters used to fill in the template parameters. |
WsdlException | public WsdlException(String message)(Code) | | Construct a WSDL exception with a simple error message string.
Parameters: message - Message text explaining the error condition being raised. |
WsdlException | public WsdlException(String template, Object[] params)(Code) | | Construct a WSDL exception with a parameterised error message string.
Parameters: template - Message text template explaining the error condition being raised. Parameters: params - The parameters used to fill in the template parameters. |
replaceTemplateParameters | protected static String replaceTemplateParameters(String template, Object[] params)(Code) | | Helper function to replace the parameters given in the template given.
Parameters: template - Message text template. Parameters: params - The parameters used to fill in the template parameters. String with all parameters substituted in the template. |
|
|
|