1 23 package fr.dyade.aaa.jndi2.impl; 24 25 import javax.naming.*; 26 import fr.dyade.aaa.jndi2.impl.*; 27 28 42 public class MissingRecordException extends NamingException { 43 44 private NamingContextId namingContextId; 45 46 private Object ownerId; 47 48 private NameNotFoundException nnfe; 49 50 59 public MissingRecordException( 60 NamingContextId namingContextId, 61 Object ownerId, 62 NameNotFoundException nnfe) { 63 this.namingContextId = namingContextId; 64 this.ownerId = ownerId; 65 this.nnfe = nnfe; 66 } 67 68 public final NamingContextId getNamingContextId() { 69 return namingContextId; 70 } 71 72 public final Object getOwnerId() { 73 return ownerId; 74 } 75 76 public final NameNotFoundException getNameNotFoundException() { 77 return nnfe; 78 } 79 } 80 | Popular Tags |