01 /**
02 * AuthVerificationException.java
03 * Copyright (c) 2011, Casey Connor
04 * All rights reserved.
05 *
06 * Redistribution and use in source and binary forms, with or without modification,
07 * are permitted provided that the following conditions are met:
08 *
09 * - Redistributions of source code must retain the above copyright notice, this
10 * list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright notice,
12 * this list of conditions and the following disclaimer in the documentation
13 * and/or other materials provided with the distribution.
14 * - Neither the name of Lacinato nor the names of its contributors may be used to
15 * endorse or promote products derived from this software without specific prior
16 * written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
19 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
21 * SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
23 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
25 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
26 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * http://lacinato.com/cm/software/emailrelated/bdkim
29 *
30 * @author Casey Connor -- lacinato.com
31 * @version 1.0
32 */
33
34 package com.lacinato.tools.bdkim;
35
36 /**
37 * Exception thrown when an exceptional scenario prohibits the analyzer from verifying the authentication
38 * status of identities present in an email message.
39 */
40 @SuppressWarnings("serial")
41 public class AuthVerificationException extends Exception
42 {
43 public AuthVerificationException(String msg) { super(msg); }
44 }
|