package com.baasbox.dao.exception; public class AdminCannotChangeRoleException extends Exception { public AdminCannotChangeRoleException() { // TODO Auto-generated constructor stub } public AdminCannotChangeRoleException(String message) { super(message); // TODO Auto-generated constructor stub } public AdminCannotChangeRoleException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } public AdminCannotChangeRoleException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } public AdminCannotChangeRoleException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); // TODO Auto-generated constructor stub } }