| Interstage Shunsaku Data Manager Application Development Guide - Microsoft(R) Windows(R) 2000/ Microsoft(R) Windows Server(TM) 2003 - - UNIX - |
Contents
Index
![]()
|
| Appendix K XML Conversion Function APIs | > K.7 XMLGenException Class |
FunctionThis method creates an instance of XMLGenException.
Syntax
Format 1
public XMLGenException(
java.lang.String code /* (1) Error code */
) ; |
Format 2
public XMLGenException(
java.lang.String code, /* (1) Error code */
java.lang.String arg /* (2) Error message parameter */
) ; |
Format 3
public XMLGenException(
java.lang.String code, /* (1) Error code */
java.lang.Exception e, /* (2) Exception that caused an error */
java.lang.String arg /* (3) Error message parameter */
) ; |
Format 4
public XMLGenException(
java.lang.String code, /* (1) Error code */
java.lang.Exception e /* (2) Exception that caused an error */
); |
Format 5
public XMLGenException(
java.lang.String code, /* (1) Error code */
java.lang.Throwable err /* (2) Exception that caused an error */
) ; |
Format 6
public XMLGenException(
java.lang.String code, /* (1) Error code */
java.lang.String[] param /* (2) Parameter array */
); |
Return ValueNone
ParametersSpecify according to the following:
Format 1An error code is output.
Format 2An error code is output.
An error message parameter is output.
Format 3An error code is output.
The exception that caused an error is output.
An error message parameter is output.
Format 4An error code is output.
The exception that caused an error is output.
Format 5An error code is output.
The exception that caused an error is output.
Format 6An error code is output.
An error message parameter array is output.
ExceptionsNone
Contents
Index
![]()
|