aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/moe/yuuta/gplicense/ValidationException.java
blob: 76ff49c36a4f39c1373a275570b4aaba110d7f5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package moe.yuuta.gplicense;

/**
 * Indicates that an error occurred while validating the integrity of data managed by an
 * {@link Obfuscator}.}
 */
public class ValidationException extends Exception {
    public ValidationException() {
        super();
    }

    public ValidationException(String s) {
        super(s);
    }

    private static final long serialVersionUID = 1L;
}