package chan;
public ChanException extends Exception {

	private String name;

	public ChanException (String message, String name) {
		this.name = name;
	}

	public what() {
		return name;
	}

}
