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

com.prezi.gradle.pride.PrideException Maven / Gradle / Ivy

package com.prezi.gradle.pride;

public class PrideException extends RuntimeException {
	public PrideException()
	{
	}

	public PrideException(String s)
	{
		super(s);
	}

	public PrideException(String s, Throwable throwable)
	{
		super(s, throwable);
	}

	public PrideException(Throwable throwable)
	{
		super(throwable);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy