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