001
014
015 package com.liferay.portal;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018
019
022 public class GroupParentException extends PortalException {
023
024 public static final int CHILD_DESCENDANT = 3;
025
026 public static final int SELF_DESCENDANT = 1;
027
028 public static final int STAGING_DESCENDANT = 2;
029
030 public GroupParentException() {
031 _type = 0;
032 }
033
034 public GroupParentException(int type) {
035 _type = type;
036 }
037
038 public GroupParentException(String msg) {
039 super(msg);
040
041 _type = 0;
042 }
043
044 public GroupParentException(String msg, Throwable cause) {
045 super(msg, cause);
046
047 _type = 0;
048 }
049
050 public GroupParentException(Throwable cause) {
051 super(cause);
052
053 _type = 0;
054 }
055
056 public int getType() {
057 return _type;
058 }
059
060 private final int _type;
061
062 }