RpcConfigurationException.cs 276 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace JsonRPC4.Router
  6. {
  7. public class RpcConfigurationException : RpcRouterException
  8. {
  9. public RpcConfigurationException(string message)
  10. : base(message)
  11. {
  12. }
  13. }
  14. }