/**
 * Created with IntelliJ IDEA.
 * User: Jackie Ng
 * Date: 26/11/12
 * Time: 11:46 PM
 * To change this template use File | Settings | File Templates.
 */
public class AssertException extends RuntimeException {
    public AssertException(String msg) {
        super(msg);
    }
}
