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

com.github.thiagogarbazza.domainvalidation.Violation Maven / Gradle / Ivy

There is a newer version: 0.1.0
Show newest version
package com.github.thiagogarbazza.domainvalidation;

import lombok.Getter;

@Getter
public final class Violation {

    private final String code;
    private final String message;

    public Violation(final String code, final String message) {
        this.code = code;
        this.message = message;
    }

    public Violation(final String code, final String message, final Object[] arguments) {
        this.code = code;
        this.message = String.format(message, arguments);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy