[jOOQ/jOOQ#12582] ControlFlowSignal should use Throwable(String, Throwable, boolean, boolean) super constructor
This commit is contained in:
parent
e14fea1008
commit
1a015852d7
@ -68,7 +68,9 @@ public class ControlFlowSignal extends RuntimeException {
|
||||
* Create a new <code>ControlFlowException</code>.
|
||||
*/
|
||||
public ControlFlowSignal(String message) {
|
||||
super(message);
|
||||
|
||||
// [#12582] Use more efficient instantiation without suppression or stack trace.
|
||||
super(message, null, false, false);
|
||||
}
|
||||
|
||||
@SuppressWarnings("sync-override")
|
||||
|
||||
Loading…
Reference in New Issue
Block a user