/**
* This constructor accepts an array of points as input. Copy the points into the array points[].
*
* @param pts input array of points
* @throws IllegalArgumentException if pts == null or pts.length == 0.
*/
protected AbstractSorter(Point[] pts) throws IllegalArgumentException
{
try{
for(int i = 0; i < pts.length; i++)
{
points[i] = pts[i];
}
}
catch()
{
}
}
Я знаю, что это должно быть действительно просто, но как бы я выбрасывал это исключение с этими условиями?