System.Runtime.Serialization.Formatters.ServerFault.ServerFault C# (CSharp) Method

ServerFault() public method

public ServerFault ( String exceptionType, String message, String stackTrace ) : System
exceptionType String
message String
stackTrace String
return System
		public ServerFault(String exceptionType, String message, String stackTrace)
		{
			this.exceptionType = exceptionType;
			this.message = message;
			this.stackTrace = stackTrace;
		}

Same methods

ServerFault::ServerFault ( Exception exception ) : System
ServerFault