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 ListIndexException 42 extends JenaException 43 { 44 47 48 51 52 55 56 59 62 public ListIndexException() { 63 super( "Tried to index beyond the length of a list" ); 64 } 65 66 71 public ListIndexException( String msg ) { 72 super( msg ); 73 } 74 75 76 79 80 83 84 88 89 } 90 91 92 121 | Popular Tags |