blob: b44d01468e406bade106dec11b47698833d175a3 [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package androidx.javascriptengine;
/**
* Exception thrown when evaluation is terminated due to {@link JavaScriptIsolate} being
* closed. This can occur when the {@link JavaScriptIsolate#close()} is called.
*/
public final class IsolateTerminatedException extends JavaScriptException {
public IsolateTerminatedException() {
super();
}
}