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