View Javadoc

1   package net.sourceforge.barbecue.formatter;
2   
3   public class FormattingException extends Exception {
4   
5   	public FormattingException(String s) {
6   		this(s, null);
7   	}
8   
9   	public FormattingException(String s, Throwable cause) {
10  		super(s, cause);
11  	}
12  
13  }