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.CronetException; 8 9 /** Implements {@link CronetException}. */ 10 public class CronetExceptionImpl extends CronetException { CronetExceptionImpl(String message, Throwable cause)11 public CronetExceptionImpl(String message, Throwable cause) { 12 super(message, cause); 13 } 14 } 15