001
014
015 package com.liferay.portal.kernel.plugin;
016
017 import com.liferay.portal.kernel.exception.PortalException;
018
019
022 public class RequiredPluginPackageException extends PortalException {
023
024 public RequiredPluginPackageException() {
025 }
026
027 public RequiredPluginPackageException(String msg) {
028 super(msg);
029 }
030
031 public RequiredPluginPackageException(String msg, Throwable cause) {
032 super(msg, cause);
033 }
034
035 public RequiredPluginPackageException(Throwable cause) {
036 super(cause);
037 }
038
039 public String getContext() {
040 return _context;
041 }
042
043 public void setContext(String context) {
044 _context = context;
045 }
046
047 private String _context;
048
049 }