001
014
015 package com.liferay.portal;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018
019
022 public class LayoutTypeException extends PortalException {
023
024 public static final int FIRST_LAYOUT = 2;
025
026 public static final int NOT_PARENTABLE = 1;
027
028 public LayoutTypeException(int type) {
029 _type = type;
030 }
031
032 public String getLayoutType() {
033 return _layoutType;
034 }
035
036 public int getType() {
037 return _type;
038 }
039
040 public void setLayoutType(String layoutType) {
041 _layoutType = layoutType;
042 }
043
044 private String _layoutType;
045 private int _type;
046
047 }