com.brentcroft.tools.model.RanOutOfTriesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of el-model Show documentation
Show all versions of el-model Show documentation
Hierarchical Map, materialized from JSON, XML and properties, supporting EL plates.
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 );
}
}