@@ -0,0 +1,11 @@
+class Triangle {
+
+ Triangle(double side1, double side2, double side3) throws TriangleException {
+ throw new UnsupportedOperationException("Delete this statement and write your own implementation.");
+ }
+ TriangleKind getKind() {
+}