diff options
Diffstat (limited to 'src/main/java/ftbsc/lll/exceptions/NotAProxyException.java')
-rw-r--r-- | src/main/java/ftbsc/lll/exceptions/NotAProxyException.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/ftbsc/lll/exceptions/NotAProxyException.java b/src/main/java/ftbsc/lll/exceptions/NotAProxyException.java index 4c2eeaa..1ce3c0f 100644 --- a/src/main/java/ftbsc/lll/exceptions/NotAProxyException.java +++ b/src/main/java/ftbsc/lll/exceptions/NotAProxyException.java @@ -1,8 +1,8 @@ package ftbsc.lll.exceptions; import ftbsc.lll.processor.annotations.Find; -import ftbsc.lll.proxies.FieldProxy; -import ftbsc.lll.proxies.MethodProxy; +import ftbsc.lll.proxies.impl.FieldProxy; +import ftbsc.lll.proxies.impl.MethodProxy; /** * Thrown when a method is annotated with {@link Find} but does not @@ -16,6 +16,6 @@ public class NotAProxyException extends RuntimeException { * @param method the name of the method wrongly annotated */ public NotAProxyException(String parent, String method) { - super(String.format("Annotated method %s::%s does not return a proxy!", parent, method)); + super(String.format("Annotated field %s::%s does not return a proxy!", parent, method)); } } |