1 package org.sapia.archie; 2 3 4 14 public class NotFoundException extends Exception { 15 16 private Name _remaining, _resolved; 17 18 21 public NotFoundException(String msg) { 22 super(msg); 23 } 24 25 public void setRemainingName(Name name){ 26 _remaining = name; 27 } 28 29 public void setResolvedName(Name name){ 30 _resolved = name; 31 } 32 33 public Name getRemainingName(){ 34 return _remaining; 35 } 36 37 public Name getResolvedName(){ 38 return _resolved; 39 } 40 } 41 | Popular Tags |