org.molgenis.data.security.exception.PermissionDeniedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of molgenis-data-security Show documentation
Show all versions of molgenis-data-security Show documentation
Security data model and data layer security.
package org.molgenis.data.security.exception;
import org.molgenis.i18n.CodedRuntimeException;
public abstract class PermissionDeniedException extends CodedRuntimeException {
public PermissionDeniedException(String errorCode) {
super(errorCode);
}
public PermissionDeniedException(String errorCode, Throwable cause) {
super(errorCode, cause);
}
}