comparison graal/com.oracle.max.base/src/com/sun/max/util/Utf8Exception.java @ 4142:bc8527f3071c

Adjust code base to new level of warnings.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Sun, 18 Dec 2011 05:24:06 +0100
parents e233f5660da4
children
comparison
equal deleted inserted replaced
4141:04d21be7a24f 4142:bc8527f3071c
25 /** 25 /**
26 * Signals that something went wrong regarding UTF8 encoding or decoding. 26 * Signals that something went wrong regarding UTF8 encoding or decoding.
27 */ 27 */
28 public class Utf8Exception extends Exception { 28 public class Utf8Exception extends Exception {
29 29
30 /**
31 *
32 */
33 private static final long serialVersionUID = 5982621155136696282L;
34
30 Utf8Exception() { 35 Utf8Exception() {
31 super(); 36 super();
32 } 37 }
33 38
34 Utf8Exception(String message) { 39 Utf8Exception(String message) {