RpcRouterException.cs 287 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace JsonRPC4.Router
  6. {
  7. public abstract class RpcRouterException : Exception
  8. {
  9. protected RpcRouterException(string message, Exception ex = null) : base(message, ex)
  10. {
  11. }
  12. }
  13. }