C# Class PhotonWire.Server.CustomErrorException

Inheritance: System.Exception
Datei anzeigen Open project: neuecc/PhotonWire

Public Methods

Method Description
CustomErrorException ( short returnCode ) : System

Client receive CustomErrorException.

CustomErrorException ( short returnCode, object parameter ) : System

Client receive CustomErrorException.

CustomErrorException ( short returnCode, string errorMessage ) : System

Client receive CustomErrorException.

CustomErrorException ( short returnCode, string errorMessage, object parameter ) : System

Client receive CustomErrorException.

Method Details

CustomErrorException() public method

Client receive CustomErrorException.
public CustomErrorException ( short returnCode ) : System
returnCode short Receiving returnCode. Code must not be 0 or -1.
return System

CustomErrorException() public method

Client receive CustomErrorException.
public CustomErrorException ( short returnCode, object parameter ) : System
returnCode short Receiving returnCode. Code must not be 0 or -1.
parameter object Return parameter, only photon supported type: http://doc.photonengine.com/en/onpremise/current/reference/serialization-in-photon
return System

CustomErrorException() public method

Client receive CustomErrorException.
public CustomErrorException ( short returnCode, string errorMessage ) : System
returnCode short Receiving returnCode. Code must not be 0 or -1.
errorMessage string Return message
return System

CustomErrorException() public method

Client receive CustomErrorException.
public CustomErrorException ( short returnCode, string errorMessage, object parameter ) : System
returnCode short Receiving returnCode. Code must not be 0 or -1.
errorMessage string Return message
parameter object Return parameter, only photon supported type: http://doc.photonengine.com/en/onpremise/current/reference/serialization-in-photon
return System