aboutsummaryrefslogtreecommitdiffstats
path: root/src/ru/olamedia/asset/AssetNotFoundException.java
blob: 29afdf06207a76e6c1ac8e2a6605f5af213e0c21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package ru.olamedia.asset;

public class AssetNotFoundException extends Exception {

	public AssetNotFoundException() {
		super();
	}

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

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

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

	private static final long serialVersionUID = 2197816222986044998L;
}