Opc.Ua.ServiceResultException.ServiceResultException C# (CSharp) Method

ServiceResultException() public method

The default constructor.
public ServiceResultException ( ) : System
return System
		public ServiceResultException() : base(Strings.DefaultMessage)
		{
            m_status = StatusCodes.Bad;

            if ((Utils.TraceMask & Utils.TraceMasks.StackTrace) != 0)
            {
                Utils.Trace(Utils.TraceMasks.StackTrace, "***EXCEPTION*** {0}", m_status);
            }
		}

Same methods

ServiceResultException::ServiceResultException ( Exception e, uint defaultCode ) : System
ServiceResultException::ServiceResultException ( ServiceResult status ) : System
ServiceResultException::ServiceResultException ( string message ) : System
ServiceResultException::ServiceResultException ( string message, Exception e ) : System
ServiceResultException::ServiceResultException ( uint statusCode ) : System
ServiceResultException::ServiceResultException ( uint statusCode, Exception e ) : System
ServiceResultException::ServiceResultException ( uint statusCode, string message ) : System
ServiceResultException::ServiceResultException ( uint statusCode, string message, Exception e ) : System