summaryrefslogtreecommitdiffstats
path: root/authz-batch/src/main/java/com/att/authz/BatchException.java
blob: 72475033a15709c66e02e005340eeaa087df7971 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*******************************************************************************
 * Copyright (c) 2016 AT&T Intellectual Property. All rights reserved.
 *******************************************************************************/
package com.att.authz;

public class BatchException extends Exception {

	/**
	 * 
	 */
	private static final long serialVersionUID = -3877245367723491192L;

	public BatchException() {
	}

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

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

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

	public BatchException(String message, Throwable cause,
			boolean enableSuppression, boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}

}