Author: remm
Date: Fri Feb  1 08:42:36 2019
New Revision: 1852677

URL: http://svn.apache.org/viewvc?rev=1852677&view=rev
Log:
i18n

Modified:
    tomcat/trunk/java/org/apache/tomcat/websocket/pojo/LocalStrings.properties
    tomcat/trunk/java/org/apache/tomcat/websocket/pojo/PojoMethodMapping.java

Modified: 
tomcat/trunk/java/org/apache/tomcat/websocket/pojo/LocalStrings.properties
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/websocket/pojo/LocalStrings.properties?rev=1852677&r1=1852676&r2=1852677&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/websocket/pojo/LocalStrings.properties 
[UTF-8] (original)
+++ tomcat/trunk/java/org/apache/tomcat/websocket/pojo/LocalStrings.properties 
[UTF-8] Fri Feb  1 08:42:36 2019
@@ -32,6 +32,7 @@ pojoMethodMapping.duplicatePongMessagePa
 pojoMethodMapping.duplicateSessionParam=Multiple session parameters present on 
the method [{0}] of class [{1}] that was annotated with OnMessage
 pojoMethodMapping.invalidDecoder=The specified decoder of type [{0}] could not 
be instantiated
 pojoMethodMapping.methodNotPublic=The annotated method [{0}] is not public
+pojoMethodMapping.noDecoder=No decoder was found for message parameters 
present on the method [{0}] of class [{1}] that was annotated with OnMessage
 pojoMethodMapping.noPayload=No payload parameter present on the method [{0}] 
of class [{1}] that was annotated with OnMessage
 pojoMethodMapping.onErrorNoThrowable=No Throwable parameter was present on the 
method [{0}] of class [{1}] that was annotated with OnError
 pojoMethodMapping.paramWithoutAnnotation=A parameter of type [{0}] was found 
on method[{1}] of class [{2}] that did not have a @PathParam annotation

Modified: 
tomcat/trunk/java/org/apache/tomcat/websocket/pojo/PojoMethodMapping.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/websocket/pojo/PojoMethodMapping.java?rev=1852677&r1=1852676&r2=1852677&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/websocket/pojo/PojoMethodMapping.java 
(original)
+++ tomcat/trunk/java/org/apache/tomcat/websocket/pojo/PojoMethodMapping.java 
Fri Feb  1 08:42:36 2019
@@ -485,7 +485,9 @@ public class PojoMethodMapping {
                     if (decoderMatch.hasMatches()) {
                         indexPayload = i;
                     } else {
-                        throw new DeploymentException("Boo!");
+                        throw new DeploymentException(sm.getString(
+                                "pojoMethodMapping.noDecoder",
+                                m.getName(), m.getDeclaringClass().getName()));
                     }
                 }
             }



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to