comparison graal/com.oracle.max.base/src/com/sun/max/program/ProgramError.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
27 * In the target VM, these errors can be made to perform a hard exit of the VM by 27 * In the target VM, these errors can be made to perform a hard exit of the VM by
28 * redirecting them via a {@linkplain #setHandler(Handler) registered} error handler. 28 * redirecting them via a {@linkplain #setHandler(Handler) registered} error handler.
29 */ 29 */
30 30
31 public final class ProgramError extends Error { 31 public final class ProgramError extends Error {
32
33 /**
34 *
35 */
36 private static final long serialVersionUID = -4457023777191065175L;
32 37
33 /** 38 /**
34 * Implemented by a client that can {@linkplain ProgramError#setHandler(Handler) register} 39 * Implemented by a client that can {@linkplain ProgramError#setHandler(Handler) register}
35 * itself to handle program errors instead of having them result in a {@link ProgramError} 40 * itself to handle program errors instead of having them result in a {@link ProgramError}
36 * instance raised. 41 * instance raised.