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

fun.fengwk.convention4j.api.code.ImmutableResolvedConventionErrorCode Maven / Gradle / Ivy

package fun.fengwk.convention4j.api.code;

import lombok.EqualsAndHashCode;
import lombok.ToString;

import java.io.Serial;
import java.util.Map;

/**
 * @author fengwk
 */
@EqualsAndHashCode
@ToString
public class ImmutableResolvedConventionErrorCode extends ImmutableConventionErrorCode implements ResolvedConventionErrorCode {

    @Serial
    private static final long serialVersionUID = 1L;

    public ImmutableResolvedConventionErrorCode(int status, String code, String message, Map errorContext) {
        super(status, code, message, errorContext);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy