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

hr.com.vgv.verano.http.response.FailWith Maven / Gradle / Ivy

There is a newer version: 0.41
Show newest version
package hr.com.vgv.verano.http.response;

import org.cactoos.Text;

public class FailWith implements Text
{
    private final String text;

    public FailWith(String text)
    {
        this.text = text;
    }

    @Override
    public final String asString()
    {
        return this.text;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy