OperationNotAllowedException.java

package taskfusion.exceptions;

public class OperationNotAllowedException extends Exception {
    public OperationNotAllowedException(String errorMessage) {
        super(errorMessage);
    }
}