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

io.github.kiryu1223.drink.exception.DrinkNotFoundPropertyException Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package io.github.kiryu1223.drink.exception;

import java.lang.reflect.Method;

public class DrinkNotFoundPropertyException extends DrinkException
{
    public DrinkNotFoundPropertyException(Method method)
    {
        super(method.toGenericString());
    }

    public DrinkNotFoundPropertyException(String name)
    {
        super(name);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy