Skip to content

Commit

Permalink
Fixed copy-pasted exception message
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed May 28, 2013
1 parent 41c2208 commit 3f17ff6
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -69,7 +69,7 @@ public <T> UISelectOne<T> produceSelectOne(InjectionPoint injectionPoint)
}
else
{
throw new IllegalStateException("Cannot inject a generic instance of type " + UIInput.class.getName()
throw new IllegalStateException("Cannot inject a generic instance of type " + UISelectOne.class.getName()
+ "<?,?> without specifying concrete generic types at injection point " + injectionPoint + ".");
}
}
Expand All @@ -92,7 +92,7 @@ public <T> UISelectMany<T> produceSelectMany(InjectionPoint injectionPoint)
}
else
{
throw new IllegalStateException("Cannot inject a generic instance of type " + UIInput.class.getName()
throw new IllegalStateException("Cannot inject a generic instance of type " + UISelectMany.class.getName()
+ "<?,?> without specifying concrete generic types at injection point " + injectionPoint + ".");
}
}
Expand Down Expand Up @@ -138,7 +138,7 @@ public <T> UIInputMany<T> produceInputMany(InjectionPoint injectionPoint)
}
else
{
throw new IllegalStateException("Cannot inject a generic instance of type " + UIInput.class.getName()
throw new IllegalStateException("Cannot inject a generic instance of type " + UIInputMany.class.getName()
+ "<?,?> without specifying concrete generic types at injection point " + injectionPoint + ".");
}
}
Expand Down

0 comments on commit 3f17ff6

Please sign in to comment.