summaryrefslogtreecommitdiffstats
path: root/src/main/java/edu/kit/scc/dei/ecplean/ECPAuthenticationException.java
blob: 2fbfe96f06836aa08cc7e2cbce87eb86f0bac56b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package edu.kit.scc.dei.ecplean;

public class ECPAuthenticationException extends Exception {

	private static final long serialVersionUID = 1L;

	public ECPAuthenticationException() {
	}

	public ECPAuthenticationException(String message) {
		super(message);
	}

	public ECPAuthenticationException(Throwable cause) {
		super(cause);
	}

	public ECPAuthenticationException(String message, Throwable cause) {
		super(message, cause);
	}

}