1 10 package com.hp.hpl.jena.datatypes; 11 12 import com.hp.hpl.jena.shared.*; 13 14 21 public class DatatypeFormatException extends JenaException 22 { 23 24 27 33 public DatatypeFormatException(String lexicalForm, RDFDatatype dtype, String msg) { 34 super("Lexical form '" + lexicalForm + 35 "' is not a legal instance of " + dtype + " " + msg); 36 } 37 38 42 public DatatypeFormatException() { 43 } 44 45 50 public DatatypeFormatException(String msg) { 51 super(msg); 52 } 53 54 } 55 56 85 | Popular Tags |