1 19 20 package com.hp.hpl.jena.ontology; 23 24 25 28 43 public class ProfileException 44 extends OntologyException 45 { 46 49 52 55 58 public ProfileException( String element, Profile profile ) { 59 super( "Attempted to use language construct " + element + " that is not supported in the current language profile: " + 60 ((profile == null) ? "not specified" : profile.getLabel()) ); 61 } 62 63 64 67 70 74 } 75 76 77 106 107 108 | Popular Tags |