All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.curs.celesta.PermissionDeniedException Maven / Gradle / Ivy

The newest version!
package ru.curs.celesta;

import ru.curs.celesta.dbutils.Action;
import ru.curs.celesta.score.GrainElement;

/**
 * Exception that is thrown if there are no permissions to access some table.
 */
public class PermissionDeniedException extends CelestaException {

    private static final long serialVersionUID = 1L;

    public PermissionDeniedException(String message) {
        super(message);
    }

    public PermissionDeniedException(String message, Object... args) {
        super(message, args);
    }

    public PermissionDeniedException(CallContext context, GrainElement table,
            Action action) {
        this("There is no %s permission for user %s on object %s.%s", action
                .toString(), context.getUserId(), table.getGrain().getName(),
                table.getName());
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy