summaryrefslogtreecommitdiff
path: root/src/org/noreply/fancydress/status/Mix3Exception.java
blob: cf7711b84e7864f97ee73e0c559d79b7870c7016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* $Id$ */
package org.noreply.fancydress.status;

/**
 * Base class for other mix3 exceptions.
 */
public abstract class Mix3Exception extends Exception {
	public Mix3Exception(String s) {
		super(s);
	}
	public Mix3Exception(String s, Throwable cause) {
		super(s, cause);
	}
}