/**
 * Used by <tt>Value</tt> to report arithmetic errors, e.g. when trying
 * to perform an addition of a scalar with a vector, which is not defined.
 * @see Value
 */
public class InvalidParameterException extends VektorException
{
  public InvalidParameterException( String param, String msg)
  {
    super( "invalid parameter: " + param + ": " + msg );
  }
}