com.mobileapps.pcre
Interface PCREConsole

All Known Implementing Classes:
PCREApplicationConsole

public abstract interface PCREConsole


Method Summary
 void PCREAPIErrorMsg(PCREError error)
          Output a PCRE API error message to the console.
 void PCREClientErrorMsg(PCREError error)
          Output a client error message to the console.
 void PCREFatalErrorMsg(PCREError error)
          Output a fatal error message to the console.
 void PCREGatewayErrorMsg(PCREError error)
          Output a Gateway error message to the console.
 void PCREInternalErrorMsg(PCREError error)
          Output an abnormal (internal) error message to the console.
 void PCREOutputMsg(java.lang.String msg)
          Output a message to the console.
 void PCREServerErrorMsg(PCREError error)
          Output a server error message to the console.
 

Method Detail

PCREAPIErrorMsg

public void PCREAPIErrorMsg(PCREError error)
Output a PCRE API error message to the console.
Parameters:
error - The PCRE API error to output to the client.

PCREClientErrorMsg

public void PCREClientErrorMsg(PCREError error)
Output a client error message to the console.
Parameters:
error - The client error to output to the client.

PCREFatalErrorMsg

public void PCREFatalErrorMsg(PCREError error)
Output a fatal error message to the console.
Parameters:
error - The fatal error to output to the client.

PCREGatewayErrorMsg

public void PCREGatewayErrorMsg(PCREError error)
Output a Gateway error message to the console.
Parameters:
error - The gateway error to output to the client.

PCREInternalErrorMsg

public void PCREInternalErrorMsg(PCREError error)
Output an abnormal (internal) error message to the console.
Parameters:
error - The abnormal error to output to the client.

PCREOutputMsg

public void PCREOutputMsg(java.lang.String msg)
Output a message to the console.
Parameters:
msg - The message to output to the client.

PCREServerErrorMsg

public void PCREServerErrorMsg(PCREError error)
Output a server error message to the console.
Parameters:
error - The command error to output to the client.