comparison graal/com.oracle.graal.api.code/src/com/oracle/graal/api/code/BailoutException.java @ 17380:4b94e5f3d823

BailoutException should default to a permanent error
author Lukas Stadler <lukas.stadler@oracle.com>
date Wed, 08 Oct 2014 10:49:08 +0200
parents e3f3233ec6cd
children 9c4168877444
comparison
equal deleted inserted replaced
17379:21015ffe0a1e 17380:4b94e5f3d823
40 * 40 *
41 * @param args parameters to the formatter 41 * @param args parameters to the formatter
42 */ 42 */
43 public BailoutException(String format, Object... args) { 43 public BailoutException(String format, Object... args) {
44 super(String.format(Locale.ENGLISH, format, args)); 44 super(String.format(Locale.ENGLISH, format, args));
45 this.permanent = false; 45 this.permanent = true;
46 } 46 }
47 47
48 /** 48 /**
49 * Creates a new {@link BailoutException}. 49 * Creates a new {@link BailoutException}.
50 * 50 *