1 10 11 package com.triactive.jdo.sco; 12 13 import com.triactive.jdo.SCO; 14 15 16 23 24 public class IncompatibleTypeException extends SCOException 25 { 26 34 35 public IncompatibleTypeException(SCO sco, String parameter, Class expected, Class actual) 36 { 37 super(sco, "Incompatible " + parameter + " type: was " + actual.getName() + ", should be " + expected.getName()); 38 } 39 } 40 | Popular Tags |