1: package net.sf.mockcreator.dumby; 2: 3: public class LimitedDepthSuper { 4: public static final String MESSAGE = "I AM NOT A DUMBY"; 5: 6: public LimitedDepthSuper() { 7: throw new IllegalStateException(MESSAGE); 8: } 9: }