| 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.6 CSVException Class |
FunctionThis method creates an instance of CSVException.
Syntax
Format 1
public CSVException(
java.lang.String code /* (1) Error code */
); |
Format 2
public CSVException(
java.lang.String code, /* (1) Error code */
java.lang.String arg /* (2) Error message parameter */
); |
Format 3
public CSVException(
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 CSVException(
java.lang.String code, /* (1) Error code */
java.lang.Exception e /* (2) Exception that caused an error */
); |
Format 5
public CSVException(
java.lang.String code, /* (1) Error code */
java.lang.String[] param /* (2) Error message 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.
An error message parameter array is output.
ExceptionsNone
Contents
Index
![]()
|