Create a Rectangle class with
? Private attributes for width and height
? A default constructor that sets the height to 10 and width to 25.
? An overloaded constructor that takes integer width and height arguments, uses a separate method to check whether the width and height fall within the range between 0 and 30, and throws an exception if out of range.
? getArea and draw methods for the class.
o getArea will calculate the area of the rectangle based on the width and height.
o draw will outline the rectangle usings asterisks. The number of asterisks used will match the width and height of the rectangle.
Create a TestRectangle class that tests both constructors of the Rectangle class.