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

com.nikedlab.android.inject.InjectException Maven / Gradle / Ivy

There is a newer version: 3.0.13
Show newest version
package com.nikedlab.android.inject;

public class InjectException extends RuntimeException {

	private static final long serialVersionUID = 1L;

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy