
com.arellomobile.anlib.inject.InjectException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anlib Show documentation
Show all versions of anlib Show documentation
Arello-Mobile library for Android
The newest version!
package com.arellomobile.anlib.inject;
/**
* Jan 27, 2015
*
* @author denis.mirochnik
*/
public class InjectException extends RuntimeException
{
private static final long serialVersionUID = 1L;
public InjectException()
{
super();
}
public InjectException(String detailMessage, Throwable throwable)
{
super(detailMessage, throwable);
}
public InjectException(String detailMessage)
{
super(detailMessage);
}
public InjectException(Throwable throwable)
{
super(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy