001
014
015 package com.liferay.portlet.shopping;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018
019 import java.util.List;
020
021
024 public class CouponLimitCategoriesException extends PortalException {
025
026 public CouponLimitCategoriesException() {
027 }
028
029 public CouponLimitCategoriesException(String msg) {
030 super(msg);
031 }
032
033 public CouponLimitCategoriesException(String msg, Throwable cause) {
034 super(msg, cause);
035 }
036
037 public CouponLimitCategoriesException(Throwable cause) {
038 super(cause);
039 }
040
041 public List<Long> getCategoryIds() {
042 return _categoryIds;
043 }
044
045 public void setCategoryIds(List<Long> categoryIds) {
046 _categoryIds = categoryIds;
047 }
048
049 private List<Long> _categoryIds;
050
051 }