Example #1
0
 public InvalidTokenException(VismaNetExceptionDetails exceptionDetails) : base(exceptionDetails)
 {
 }
Example #2
0
 public VismaNetException(VismaNetExceptionDetails exceptionDetails)
     : base(exceptionDetails.DetailsMessage)
 {
     Details = exceptionDetails;
 }
Example #3
0
 public InvalidTokenException(VismaNetExceptionDetails exceptionDetails, Exception innerException)
     : base(exceptionDetails, innerException)
 {
 }
Example #4
0
 public VismaNetException(VismaNetExceptionDetails exceptionDetails, Exception innerException)
     : base(exceptionDetails.DetailsMessage, innerException)
 {
     Details = exceptionDetails;
 }