Beispiel #1
0
 public BACnetErrorException(BACnetServiceException e) : base(e.Message)
 {
     Error = new BaseError((byte)127, new BACnetError(e.ErrorClass, e.ErrorCode));
 }
Beispiel #2
0
 public BACnetErrorException(byte choice, BACnetServiceException e) : base(e)
 {
     Error = new BaseError(choice, new BACnetError(e.ErrorClass, e.ErrorCode));
 }