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

com.brentcroft.tools.model.RanOutOfTriesException Maven / Gradle / Ivy

Go to download

Hierarchical Map, materialized from JSON, XML and properties, supporting EL plates.

There is a newer version: 01.01.33
Show newest version
package com.brentcroft.tools.model;

import lombok.AllArgsConstructor;
import lombok.Getter;

import static java.lang.String.format;

@AllArgsConstructor
@Getter
public class RanOutOfTriesException extends ModelException
{
    private final int tries;
    private final String test;

    public String toString()
    {
        return format( "Ran out of tries (%s) but: %s", tries, test );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy