RpcErrorCode.cs 291 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace JsonRPC4.Common
  6. {
  7. public enum RpcErrorCode
  8. {
  9. ParseError = -32700,
  10. InvalidRequest = -32600,
  11. MethodNotFound = -32601,
  12. InvalidParams = -32602,
  13. InternalError = -32603
  14. }
  15. }