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

io.airlift.airship.shared.VersionConflictException Maven / Gradle / Ivy

package io.airlift.airship.shared;

public class VersionConflictException extends RuntimeException
{
    private final String name;
    private final String version;

    public VersionConflictException(String name, String version)
    {
        super("The state of this environment has changed. Please, retry this operation.");
        this.name = name;
        this.version = version;
    }

    public String getName()
    {
        return name;
    }

    public String getVersion()
    {
        return version;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy