예제 #1
0
파일: Murmur.cs 프로젝트: Vinhold/halcyon
 public InvalidCallbackException(_System.Exception ex__) : base(ex__)
 {
 }
예제 #2
0
 public GenericError(_System.Runtime.Serialization.SerializationInfo info__, _System.Runtime.Serialization.StreamingContext context__) : base(info__, context__)
 {
     errorCode = info__.GetInt32("errorCode");
     errorMessage = info__.GetString("errorMessage");
 }
예제 #3
0
 public IncorrectName(_System.Exception ex__) : base(ex__)
 {
 }
예제 #4
0
 public VerificationError(_System.Exception ex__) : base(ex__)
 {
 }
예제 #5
0
 public VerificationError(int errorCode, string errorMessage, _System.Exception ex__) : base(errorCode, errorMessage, ex__)
 {
 }
예제 #6
0
 public InvalidDataError(_System.Exception ex__) : base(ex__)
 {
     initDM__();
 }
예제 #7
0
 public InvalidDataError(int errorCode, string errorMessage, string field_name, _System.Exception ex__) : base(errorCode, errorMessage, ex__)
 {
     initDM__(field_name);
 }
예제 #8
0
 public IncorrectAmount(_System.Exception ex__) : base(ex__)
 {
 }
예제 #9
0
 public NoSuchAccount(_System.Exception ex__) : base(ex__)
 {
 }
예제 #10
0
 public RequestRejected(string reason, _System.Exception ex__) : base(ex__)
 {
     initDM__(reason);
 }
예제 #11
0
 public IncorrectAccountNumber(_System.Exception ex__) : base(ex__)
 {
 }
예제 #12
0
 public RequestRejected(_System.Exception ex__) : base(ex__)
 {
 }
예제 #13
0
파일: Murmur.cs 프로젝트: Vinhold/halcyon
 override public void ice_exception(_System.Exception ex)
 {
     try
     {
         throw ex;
     }
     catch(Murmur.InvalidCallbackException ex__)
     {
         if(validateResponse__(false))
         {
             os__().writeUserException(ex__);
             response__(false);
         }
     }
     catch(Murmur.InvalidSecretException ex__)
     {
         if(validateResponse__(false))
         {
             os__().writeUserException(ex__);
             response__(false);
         }
     }
     catch(_System.Exception ex__)
     {
         base.ice_exception(ex__);
     }
 }
예제 #14
0
파일: Murmur.cs 프로젝트: Vinhold/halcyon
 public InvalidSecretException(_System.Exception ex__) : base(ex__)
 {
 }
예제 #15
0
 public GenericError(int errorCode, string errorMessage, _System.Exception ex__) : base(ex__)
 {
     initDM__(errorCode, errorMessage);
 }
예제 #16
0
 public IncorrectData(_System.Exception ex__) : base(ex__)
 {
 }
예제 #17
0
            public override void GetObjectData(_System.Runtime.Serialization.SerializationInfo info__, _System.Runtime.Serialization.StreamingContext context__)
            {
                info__.AddValue("errorCode", errorCode);
                info__.AddValue("errorMessage", errorMessage == null ? "" : errorMessage);

                base.GetObjectData(info__, context__);
            }
예제 #18
0
 public IncorrectData(string reason, _System.Exception ex__) : base(ex__)
 {
     initDM__(reason);
 }
예제 #19
0
 public InvalidDataError(_System.Runtime.Serialization.SerializationInfo info__, _System.Runtime.Serialization.StreamingContext context__) : base(info__, context__)
 {
     field_name = info__.GetString("field_name");
 }
예제 #20
0
 public AlreadyConnectedException(_System.Exception ex__) : base(ex__)
 {
 }
예제 #21
0
            public override void GetObjectData(_System.Runtime.Serialization.SerializationInfo info__, _System.Runtime.Serialization.StreamingContext context__)
            {
                info__.AddValue("field_name", field_name == null ? "" : field_name);

                base.GetObjectData(info__, context__);
            }
예제 #22
0
 public AlreadyConnectedException(string reason, _System.Exception ex__) : base(ex__)
 {
     initDM__(reason);
 }
예제 #23
0
 public VerificationError(_System.Runtime.Serialization.SerializationInfo info__, _System.Runtime.Serialization.StreamingContext context__) : base(info__, context__)
 {
 }
예제 #24
0
 public AuthError(_System.Exception ex__) : base(ex__)
 {
 }
예제 #25
0
 public GenericError(_System.Exception ex__) : base(ex__)
 {
     initDM__();
 }
예제 #26
0
 public AuthError(int errorCode, string errorMessage, _System.Exception ex__) : base(errorCode, errorMessage, ex__)
 {
 }
예제 #27
0
 public IncorrectCSRFile(_System.Exception ex__) : base(ex__)
 {
 }
예제 #28
0
        private string GetReadableSize(long size)
        {
            var memorySizes = new[] { "B", "KB", "MB", "GB", "TB" };
            var index = 0;

            while (size >= 1024)
            {
                size /= 1024;
                index++;
            }

            return string.Format("{0:00} {1}", size, memorySizes[index]);
        }
예제 #29
0
 public DataTooLong(_System.Exception ex__) : base(ex__)
 {
 }
예제 #30
0
파일: Murmur.cs 프로젝트: Vinhold/halcyon
 public InvalidTextureException(_System.Exception ex__) : base(ex__)
 {
 }