1 10 11 package com.triactive.jdo.store; 12 13 import javax.jdo.JDOFatalDataStoreException; 14 15 16 25 26 public class TooManyIndicesException extends JDOFatalDataStoreException 27 { 28 34 35 public TooManyIndicesException(BaseTable table) 36 { 37 super("Exceeded maximum of " + IndexIdentifier.MAX_INDICES + " indices keys for table " + table); 38 } 39 } 40 | Popular Tags |