1 17 package org.eclipse.emf.ecore.xmi; 18 19 public class PackageNotFoundException extends XMIException 20 { 21 protected String uri; 22 23 public PackageNotFoundException(String uri, String location, int line, int column) 24 { 25 super("Package with uri '" + uri + "' not found.", location, line, column); 26 this.uri = uri; 27 } 28 29 public String uri() 30 { 31 return uri; 32 } 33 } 34 | Popular Tags |