| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 package com.google.dart.compiler; | 5 package com.google.dart.compiler; |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * Exception thrown when the compiler encounters an unexpected internal error. | 8 * Exception thrown when the compiler encounters an unexpected internal error. |
| 9 */ | 9 */ |
| 10 public class InternalCompilerException extends RuntimeException { | 10 public class InternalCompilerException extends RuntimeException { |
| 11 | 11 |
| 12 public InternalCompilerException(String message) { | 12 public InternalCompilerException(String message) { |
| 13 super(message); | 13 super(message); |
| 14 } | 14 } |
| 15 |
| 16 public InternalCompilerException(String message, Throwable t) { |
| 17 super(message, t); |
| 18 } |
| 15 } | 19 } |
| OLD | NEW |