/** * Copyright 2011 Marin Solutions */ package com.captaindebug.whytotest; /** * @author Roger * */ public class AddressFormatException extends Exception { private static final long serialVersionUID = 1L; public AddressFormatException() { // TODO Auto-generated constructor stub } public AddressFormatException(String arg0) { super(arg0); } public AddressFormatException(Throwable arg0) { super(arg0); } public AddressFormatException(String arg0, Throwable arg1) { super(arg0, arg1); } }