예제 #1
0
파일: Pandora.cs 프로젝트: wade1990/Elpis
 protected internal string RPCRequest(string url, string data)
 {
     try
     {
         return(PRequest.StringRequest(url, data));
     }
     catch (Exception e)
     {
         Log.O(e.ToString());
         throw new PandoraException(ErrorCodes.ERROR_RPC, e);
     }
 }