1 16 package org.springframework.binding.method; 17 18 import org.springframework.core.NestedRuntimeException; 19 20 26 public class InvalidMethodSignatureException extends NestedRuntimeException { 27 28 35 public InvalidMethodSignatureException(ClassMethodKey signature, Exception cause) { 36 super("Could not resolve method with signature " + signature, cause); 37 } 38 } | Popular Tags |