Open Kilda Java Documentation
IntegrationException.java
Go to the documentation of this file.
1 package org.openkilda.integration.exception;
2 
3 public class IntegrationException extends RuntimeException {
4 
5  private static final long serialVersionUID = 9177586156625415602L;
6 
8  super();
9  }
10 
11  public IntegrationException(final String errorMessage) {
12  super(errorMessage);
13  }
14 
15  public IntegrationException(final String errorMessage, final Throwable e) {
16  super(errorMessage, e);
17  }
18 
19  public IntegrationException(final Throwable e) {
20  super(e);
21  }
22 }
IntegrationException(final String errorMessage, final Throwable e)