001    /*
002     * @(#)WrongParameterException   0.8.0   2001/10/27
003     * 
004     * Copyright (c) 2001 Marco Schmidt <marcoschmidt@users.sourceforge.net>
005     * All rights reserved.
006     */
007    
008    package net.sourceforge.jiu.ops;
009    
010    import net.sourceforge.jiu.ops.OperationFailedException;
011    
012    /**
013     * Exception class to indicate that an operation's parameter is of the wrong
014     * type, does not fall into a valid interval or a similar mistake.
015     *
016     * @author Marco Schmidt
017     * @since 0.6.0
018     */
019    public class WrongParameterException extends OperationFailedException
020    {
021            public WrongParameterException(String message)
022            {
023                    super(message);
024            }
025    }