Errorpublic class Error extends Exception
Fields Summary |
---|
private int | errorAPR error type. | private String | descriptionA description of the problem. |
Constructors Summary |
---|
private Error(int error, String description)Construct an APRException.
super(description);
this.error = error;
this.description = description;
|
Methods Summary |
---|
public java.lang.String | getDescription()Get the APR description of the exception.
return description;
| public int | getError()Get the APR error code of the exception.
return error;
| public static native int | netosError()Get the last platform socket error.
| public static native int | osError()Get the last platform error.
| public static native java.lang.String | strerror(int statcode)Return a human readable string describing the specified error.
|
|