1 19 20 package com.hp.hpl.jena.rdf.model; 23 24 25 26 27 import com.hp.hpl.jena.shared.JenaException; 30 31 32 42 public class EmptyListException 43 extends JenaException 44 { 45 48 49 52 53 56 57 60 63 public EmptyListException() { 64 super( "Tried to perform an operation that requires a non-empty list" ); 65 } 66 67 72 public EmptyListException( String msg ) { 73 super( msg ); 74 } 75 76 77 80 81 84 85 89 90 } 91 92 93 122 | Popular Tags |