BCXAPI.Exceptions.GeneralAPIException.GeneralAPIException C# (CSharp) Method

GeneralAPIException() public method

public GeneralAPIException ( string message, int status_code = 500 ) : System
message string
status_code int
return System
        public GeneralAPIException(string message, int status_code = 500)
            : base(message)
        {
            _statusCode = status_code;
        }
GeneralAPIException