01: package com.ext.portlet.reports;
02:
03: import com.liferay.portal.PortalException;
04:
05: public class NoSuchEntryException extends PortalException {
06:
07: public NoSuchEntryException() {
08: super ();
09: }
10:
11: public NoSuchEntryException(String msg) {
12: super (msg);
13: }
14:
15: public NoSuchEntryException(String msg, Throwable cause) {
16: super (msg, cause);
17: }
18:
19: public NoSuchEntryException(Throwable cause) {
20: super(cause);
21: }
22:
23: }
|