001
014
015 package com.liferay.portal;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018
019
022 public class LayoutParentLayoutIdException extends PortalException {
023
024 public static final int FIRST_LAYOUT_HIDDEN = 4;
025
026 public static final int FIRST_LAYOUT_TYPE = 3;
027
028 public static final int NOT_PARENTABLE = 1;
029
030 public static final int NOT_SORTABLE = 5;
031
032 public static final int SELF_DESCENDANT = 2;
033
034 public LayoutParentLayoutIdException(int type) {
035 _type = type;
036 }
037
038 public int getType() {
039 return _type;
040 }
041
042 private int _type;
043
044 }