1package org.apache.archiva.checksum;
23/*4 * Licensed to the Apache Software Foundation (ASF) under one5 * or more contributor license agreements. See the NOTICE file6 * distributed with this work for additional information7 * regarding copyright ownership. The ASF licenses this file8 * to you under the Apache License, Version 2.0 (the9 * "License"); you may not use this file except in compliance10 * with the License. You may obtain a copy of the License at11 *12 * http://www.apache.org/licenses/LICENSE-2.013 *14 * Unless required by applicable law or agreed to in writing,15 * software distributed under the License is distributed on an16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY17 * KIND, either express or implied. See the License for the18 * specific language governing permissions and limitations19 * under the License.20 */2122/**23 * Exception thrown by the ChecksumValidator24 *25 * Has an error type for different validation errors.26 *27 * @author Martin Stockhammer <martin_s@apache.org>28 */29publicclassChecksumValidationExceptionextends RuntimeException
30 {
3132public enum ValidationError {
33 INVALID_FORMAT, DIGEST_ERROR, READ_ERROR, FILE_NOT_FOUND, BAD_CHECKSUM_FILE_REF, BAD_CHECKSUM_FILE
34 };
3536finalprivate ValidationError errorType;
3738publicChecksumValidationException( ValidationError errorType )
39 {
40super( );
41this.errorType = errorType;
42 }
4344publicChecksumValidationException( ValidationError errorType, String message )
45 {
46super( message );
47this.errorType = errorType;
48 }
4950publicChecksumValidationException( ValidationError errorType, String message, Throwable cause )
51 {
52super( message, cause );
53this.errorType = errorType;
54 }
5556publicChecksumValidationException( ValidationError errorType, Throwable cause )
57 {
58super( cause );
59this.errorType = errorType;
60 }
6162public ValidationError getErrorType() {
63return errorType;
64 }
65 }