/* * ome.conditions.ACLLoadViolation * * Copyright 2006 University of Dundee. All rights reserved. * Use is subject to license terms supplied in LICENSE.txt */ package ome.conditions.acl; /** * User does not have permissions to perform given action. * * @author Josh Moore      <a * href="mailto:josh.moore@gmx.de">josh.moore@gmx.de</a> * @version 2.5 * @since 2.5 */ public class ACLLoadViolation extends ACLViolation { /** * */ private static final long serialVersionUID = 706104985954837662L; public ACLLoadViolation(Class klass, Long id, String msg) { super(klass, id, msg); } }