Constructors Summary |
---|
public AddressException()Constructs an AddressException with no detail message.
super();
|
public AddressException(String s)Constructs an AddressException with the specified detail message.
super(s);
|
public AddressException(String s, String ref)Constructs an AddressException with the specified detail message
and reference info.
super(s);
this.ref = ref;
|
public AddressException(String s, String ref, int pos)Constructs an AddressException with the specified detail message
and reference info.
super(s);
this.ref = ref;
this.pos = pos;
|