Revision: 1421
Author: sberlin
Date: Sun Nov 21 09:35:56 2010
Log: Edited wiki page ThrowingProviders through web user interface.
http://code.google.com/p/google-guice/source/detail?r=1421

Modified:
 /wiki/ThrowingProviders.wiki

=======================================
--- /wiki/ThrowingProviders.wiki        Sun Nov 21 07:18:23 2010
+++ /wiki/ThrowingProviders.wiki        Sun Nov 21 09:35:56 2010
@@ -13,7 +13,7 @@
   * Scopable
   * Standard binding DSL

-====Guice 2.0 -- !ThrowingProvider====
+====!ThrowingProvider _(new in Guice 2.0)_====
Guice 2.0 offers the !ThrowingProvider interface. It is similar to Provider, but with a generic Exception type:
 {{{
 public interface ThrowingProvider<T,E extends Exception> {
@@ -25,7 +25,7 @@
public interface FeedProvider<T> extends ThrowingProvider<T, FeedUnavailableException> { }
 }}}

-====Guice 3.0 -- !CheckedProvider====
+====!CheckedProvider _(new in Guice 3.0)_====
Guice 3.0 offers the !CheckedProvider interface. It improves upon !ThrowingProvider by allowing more than one exception type to be thrown:
 {{{
 public interface CheckedProvider<T> {

--
You received this message because you are subscribed to the Google Groups 
"google-guice-dev" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-guice-dev?hl=en.

Reply via email to