protected KnownErrorException(FaultParty faultParty, Type codeType, string codeString = null, string subCodeString = null)
     : base()
 {
     this.TypeString    = codeType.Name;
     this.CodeString    = codeString;
     this.SubCodeString = subCodeString;
 }
Exemple #2
0
            //-------------------------------------------------------------------------------------------------------------------------------------------------

            public ErrorAttribute(FaultParty faultParty, object errorCode)
                : base(LogLevel.Error, faultParty)
            {
                ErrorCode = errorCode;
            }
 protected LogMessageAttribute(LogLevel logLevel, FaultParty faultParty)
 {
     this.LogLevel   = logLevel;
     this.FaultParty = faultParty;
 }
Exemple #4
0
 public ErrorAttribute(FaultParty faultParty)
     : base(LogLevel.Error, faultParty)
 {
 }
 public DomainErrorException(FaultParty faultParty, Type codeType, string codeString, string subCodeString = null)
     : base(faultParty, codeType, codeString, subCodeString)
 {
 }