
com.github.thorbenkuck.di.runtime.exceptions.DiInstantiationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wire-di-runtime-environment Show documentation
Show all versions of wire-di-runtime-environment Show documentation
Easy and simple di using annotation processors
The newest version!
package com.github.thorbenkuck.di.runtime.exceptions;
import org.jetbrains.annotations.NotNull;
public class DiInstantiationException extends RuntimeException {
private final Class> wireType;
public DiInstantiationException(@NotNull final String message, @NotNull Class> wireType, @NotNull Throwable e) {
super(message, e);
this.wireType = wireType;
}
public DiInstantiationException(@NotNull final String message, @NotNull Class> wireType) {
super(message);
this.wireType = wireType;
}
public Class> getWireType() {
return wireType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy