Skip to content

Instantly share code, notes, and snippets.

View Sch3lp's full-sized avatar
🐚

Tim Schraepen Sch3lp

🐚
View GitHub Profile
@Sch3lp
Sch3lp / ValidationError.java
Last active March 16, 2020 07:23
VinValidator
import java.util.Objects;
public class ValidationError {
private final String error;
private ValidationError(final String error) {
this.error = error;
}
public static ValidationError from(final String error) {