comparison graal/com.oracle.max.asmdis/src/com/sun/max/asm/AssemblyException.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 * Thrown when an invalid argument is given to an assembler method. 26 * Thrown when an invalid argument is given to an assembler method.
27 */ 27 */
28 public class AssemblyException extends Exception { 28 public class AssemblyException extends Exception {
29 29
30 private static final long serialVersionUID = -633368746009467839L;
31
30 public AssemblyException(String message) { 32 public AssemblyException(String message) {
31 super(message); 33 super(message);
32 } 34 }
33 } 35 }