001    /*
002     * @(#)MissingParameterException   0.8.0   2001/11/04
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 missing
014     * (has not been specified by caller and there was no default value that
015     * could be used).
016     *
017     * @author Marco Schmidt
018     */
019    public class MissingParameterException extends OperationFailedException
020    {
021            public MissingParameterException(String message)
022            {
023                    super(message);
024            }
025    }