1 package org.kite9.framework.common;
2
3
4 public class StackSearchException extends Kite9ProcessingException {
5
6 public StackSearchException(Class<?> ann) {
7 super("Could not find annotated method in stack: "+ann);
8 }
9
10 private static final long serialVersionUID = -4653211618062874387L;
11
12 }