OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:InternalProvisionException
(Results
1 - 5
of
5
) sorted by null
/external/guice/core/src/com/google/inject/internal/
InternalFactoryToProviderAdapter.java
37
throws
InternalProvisionException
{
41
InternalProvisionException
.onNullInjectedIntoNonNullableDependency(source, dependency);
45
throw
InternalProvisionException
.errorInProvider(userException).addSource(source);
ProvidedByInternalFactory.java
60
throws
InternalProvisionException
{
72
} catch (
InternalProvisionException
ipe) {
85
throws
InternalProvisionException
{
89
throw
InternalProvisionException
.subtypeNotProvided(providerType, rawType);
95
throw
InternalProvisionException
.errorInProvider(e).addSource(source);
MembersInjectorImpl.java
72
} catch (
InternalProvisionException
ipe) {
83
throws
InternalProvisionException
{
95
public T call() throws
InternalProvisionException
{
121
void notifyListeners(T instance) throws
InternalProvisionException
{
133
throw
InternalProvisionException
.errorNotifyingInjectionListener(
140
throws
InternalProvisionException
{
162
throw
InternalProvisionException
.errorInUserInjector(
InternalProvisionException.java
66
public final class
InternalProvisionException
extends Exception {
72
public static
InternalProvisionException
circularDependenciesDisabled(Class<?> expectedType) {
78
public static
InternalProvisionException
cannotProxyClass(Class<?> expectedType) {
84
public static
InternalProvisionException
create(String format, Object... arguments) {
85
return new
InternalProvisionException
(Messages.create(format, arguments));
88
public static
InternalProvisionException
errorInUserCode(
94
return new
InternalProvisionException
(messages);
96
return new
InternalProvisionException
(Messages.create(cause, messageFormat, arguments));
100
public static
InternalProvisionException
subtypeNotProvided(
105
public static
InternalProvisionException
errorInProvider(Throwable cause)
[
all
...]
ProvisionListenerStackCallback.java
62
throws
InternalProvisionException
{
76
throw
InternalProvisionException
.errorInUserCode(
89
public T call() throws
InternalProvisionException
;
99
InternalProvisionException
exceptionDuringProvision;
113
} catch (
InternalProvisionException
ipe) {
Completed in 677 milliseconds