Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

1
  • 2
    CloneNotSupportedException is another example of a checked exception that should be unchecked (that is, it should extend RuntimeException, not Exception). Though method clone() in class Side implements Cloneable and therefore will never throw CloneNotSupportedException, Side.clone() must still catch or declare the exception. This just adds superfluous exception handling noise to the clone() method. Commented Nov 11, 2009 at 18:41