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

com.github.thorbenkuck.di.runtime.exceptions.DiLoadingException Maven / Gradle / Ivy

The newest version!
package com.github.thorbenkuck.di.runtime.exceptions;

import org.jetbrains.annotations.NotNull;

public class DiLoadingException extends RuntimeException {

	public DiLoadingException(@NotNull final String message) {
		super(message);
	}

	public DiLoadingException(
			@NotNull final String message,
			@NotNull final Throwable cause
	) {
		super(message, cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy