All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.nikedlab.android.inject.exceptions.BeanInstantiationException Maven / Gradle / Ivy

The newest version!
package com.nikedlab.android.inject.exceptions;

public class BeanInstantiationException extends RuntimeException {

	private static final long serialVersionUID = 1L;

	public BeanInstantiationException(String message) {
		super(message);
	}

	public BeanInstantiationException(Throwable cause) {
		super(cause);
	}

	public BeanInstantiationException(String message, Throwable cause) {
		super(message, cause);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy