
/* Fraction.java  A class (data type) definition file
   This file just defines what a Fraction is
   This file is NOT a program
*/

/* Fraction.java  A class (data type) definition file
   This file just defines what a Fraction is
   This file is NOT a program
*/
public class Fraction
{
	private int numer;
	private int denom;

	public Fraction()
	{
		numer = 0;
		denom = 1;
	}	
	public Fraction( int n)
	{
		numer = n;
		denom = 1;
	}
	public Fraction(int n, int d)
	{
		numer = n;
		if (d==0)
		{  throw an exception  (stops the program)
		}
		denom = d;
	}
}// END OF FRACTION CLASS DEFINITION