1 19 20 package com.hp.hpl.jena.rdf.model; 23 24 25 26 import com.hp.hpl.jena.shared.JenaException; 29 30 31 41 public class InvalidListException 42 extends JenaException 43 { 44 47 48 51 52 55 56 59 62 public InvalidListException() { 63 super( "Tried to operate on a list that is not well-formed" ); 64 } 65 66 71 public InvalidListException( String msg ) { 72 super( msg ); 73 } 74 75 76 79 80 83 84 88 89 } 90 91 92 121 | Popular Tags |