chromium/base/android/java/src/org/chromium/base/task/TaskOriginException.java

// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.base.task;

/** Used to capture stacks of where tasks are posted from. */
class TaskOriginException extends Exception {

    TaskOriginException() {
        super("vvv This is where the task was posted. vvv");
    }
}