001    package org.trails.security;
002    
003    public class EntityModificationInterception extends TrailsSecurityException {
004            private Object entity;
005            public Object getEntity() {
006                    return entity;
007            }
008    
009            public EntityModificationInterception(Object entity, String string) {
010                    super(string);
011                    this.entity = entity;
012            }
013    }