1 18 19 package org.objectweb.jac.aspects.gui; 20 21 import org.objectweb.jac.core.rtti.AbstractMethodItem; 22 23 29 30 public class InputCanceledException extends RuntimeException { 31 32 AbstractMethodItem method; 33 34 40 public InputCanceledException(AbstractMethodItem method) { 41 super("Input canceled by user for method "+method.getName()); 42 this.method = method; 43 } 44 } 45 46 | Popular Tags |