1 2 3 4 5 6 7 8 9 10 11 12 | package Torello.Browser; public class BrowserException extends RuntimeException { /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX> */ protected static final long serialVersionUID = 1; public BrowserException() { super(); } public BrowserException(final String msg) { super(msg); } } |