package class7_2_LoadingObjectData_inClass;// Dr. Yoder. MSOE. 26 January 2017 public class CircleDriver { public static void main(String[] args) { String filename = "circle.obj"; Circle circle = new Circle(3,5,1); try { circle.write(filename); Circle circle2 = Circle.read(filename); System.out.println("circle = " + circle); System.out.println("circle2 = " + circle2); } catch (ShapeException e) { System.out.println("Could not create the shape. "+e.getMessage()); e.printStackTrace(); } } }