/*
*
* Copyright (c) 2007
* Adrian Michel
* http://www.tradery.com
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation. Adrian Michel makes no
* representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*/
package com.tradery.contentmodel;
import com.tradery.contract.Contract;
import com.tradery.collections.IntegerPair;
public class BadLimitsException extends Exception
{
private IntegerPair ip;
BadLimitsException( int min, int max )
{
ip = new IntegerPair( min, max );
}
public String toString()
{
return "[" + (new Integer( ip.first() )).toString() + "," + (new Integer( ip.second() )).toString() + "]";
}
}