1 // Copyright 2016 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 package org.chromium.net.impl; 6 7 import org.chromium.net.CallbackException; 8 9 /** An implementation of {@link CallbackException}. */ 10 public class CallbackExceptionImpl extends CallbackException { CallbackExceptionImpl(String message, Throwable cause)11 public CallbackExceptionImpl(String message, Throwable cause) { 12 super(message, cause); 13 } 14 } 15