blob: 4fa2a68b379d759f96a0e2ece832da7ea702c881 [file] [log] [blame]
// Copyright 2016 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.net.impl;
import org.chromium.net.CallbackException;
/** An implementation of {@link CallbackException}. */
public class CallbackExceptionImpl extends CallbackException {
public CallbackExceptionImpl(String message, Throwable cause) {
super(message, cause);
}
}