001
014
015 package com.liferay.portal.kernel.scheduler;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018 import com.liferay.portal.kernel.spring.aop.Swallowable;
019
020
024 public class SchedulerException extends PortalException implements Swallowable {
025
026 public SchedulerException() {
027 super();
028 }
029
030 public SchedulerException(String msg) {
031 super(msg);
032 }
033
034 public SchedulerException(String msg, Throwable cause) {
035 super(msg, cause);
036 }
037
038 public SchedulerException(Throwable cause) {
039 super(cause);
040 }
041
042 public boolean isSwallowable() {
043 return _swallowable;
044 }
045
046 public void setSwallowable(boolean swallowable) {
047 _swallowable = swallowable;
048 }
049
050 private boolean _swallowable;
051
052 }