View Javadoc
1 /* 2 * Copyright (C) The Spice Group. All rights reserved. 3 * 4 * This software is published under the terms of the Spice 5 * Software License version 1.1, a copy of which has been included 6 * with this distribution in the LICENSE.txt file. 7 */ 8 package org.codehaus.spice.configkit; 9 10 /*** 11 * Exception thrown when there is an error validating configuration. 12 * 13 * @author Peter Donald 14 * @version $Revision: 1.1 $ $Date: 2003/12/03 03:19:28 $ 15 */ 16 public class ValidateException 17 extends Exception 18 { 19 /*** 20 * Create an exception with specified message. 21 * 22 * @param message the message. 23 */ 24 public ValidateException( final String message ) 25 { 26 super( message ); 27 } 28 29 /*** 30 * Create an exception with specified message and cause. 31 * 32 * @param message the message 33 * @param cause the cause 34 */ 35 public ValidateException( final String message, final Throwable cause ) 36 { 37 super( message, cause ); 38 } 39 }

This page was automatically generated by Maven