001
014
015 package com.liferay.portal;
016
017
020 public class NoSuchListTypeException extends NoSuchModelException {
021
022 public NoSuchListTypeException() {
023 super();
024 }
025
026 public NoSuchListTypeException(String msg) {
027 super(msg);
028 }
029
030 public NoSuchListTypeException(String msg, Throwable cause) {
031 super(msg, cause);
032 }
033
034 public NoSuchListTypeException(Throwable cause) {
035 super(cause);
036 }
037
038 public String getType() {
039 return _type;
040 }
041
042 public void setType(String type) {
043 _type = type;
044 }
045
046 private String _type;
047
048 }