1 6 7 package com.hp.hpl.jena.shared; 8 9 import com.hp.hpl.jena.rdf.model.*; 10 11 17 public class BadDescriptionMultipleRootsException 18 extends BadDescriptionException 19 { 20 public final Resource type; 21 22 public BadDescriptionMultipleRootsException( Model badModel, Resource type ) 23 { super( "multiple roots with type " + type, badModel ); 24 this.type = type; } 25 } 26 27 28 | Popular Tags |