1 30 package com.genimen.djeneric.repository.exceptions; 31 32 import com.genimen.djeneric.repository.DjExtent; 33 import com.genimen.djeneric.repository.DjObject; 34 35 public class CanNotDeleteException extends PersistenceException 36 { 37 private static final long serialVersionUID = 3976739159782471476L; 38 39 DjExtent _restrictingExtent = null; 40 41 public CanNotDeleteException(String s, DjObject objectConcerned, DjExtent restrictingExtent) 42 { 43 super(s, objectConcerned); 44 _restrictingExtent = restrictingExtent; 45 } 46 47 public DjExtent getRestrictingExtent() 48 { 49 return _restrictingExtent; 50 } 51 52 } | Popular Tags |