TagNotFoundExceptionpublic class TagNotFoundException extends TagException Thrown if the tag o isn't found. This is different from
the InvalidTagException . Each tag has an
ID string or some way saying that it simply exists. If this string is
missing, TagNotFoundException is thrown. If the ID string
exists, then any other error while reading throws an
InvalidTagException . |
Constructors Summary |
---|
public TagNotFoundException()Creates a new TagNotFoundException datatype.
| public TagNotFoundException(Throwable ex)Creates a new TagNotFoundException datatype.
super(ex);
| public TagNotFoundException(String msg)Creates a new TagNotFoundException datatype.
super(msg);
| public TagNotFoundException(String msg, Throwable ex)Creates a new TagNotFoundException datatype.
super(msg, ex);
|
|