| 12345678910111213141516171819 | using InABox.Rpc;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace InABox.Rpc{    public class RpcException : Exception    {        public RpcError Error { get; set; }        public RpcException(string? message, RpcError error): base(message)        {            Error = error;        }    }}
 |