[ROOT] --> C++Client
PCREError
PCREError
~PCREError
Code
Kind
Report
Text
Throw
public PCREError ( int code = 0 ,
const char * text = NULL ,
const char * kind = "PCRE error" ) ;
Construct an InternalError with the given code and text.
| code | The error code, default is zero. |
| text | The error text, default is an empty string. |
| kind | Specify type of error, default is "PCRE error". |
PCREError ( const PCREError & err ) ;
Copy Constructor duplicates an InternalError with the code and text provided by the parameter.
~ PCREError ( ) ;
const char * Text ( ) const ;
Return the text associated with the error.
int Code ( ) const ;
Return the error code associated with the error.
const char * Kind ( ) const ;
Return the kind of error this is.
virtual void Throw ( ) ;
Throw this exception.
virtual void Report ( ) ;
Report this exception.