// Written by Caleb Early

class IllFormedSectionException extends Exception{
	private String reason = null;
	public IllFormedSectionException(String reason){
		this.reason = reason;
	}
	@Override
	public String toString(){
		return "Ill formed section: "+reason;
	}
}
