chromium/third_party/blink/renderer/modules/webtransport/web_transport_error.cc

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

#include "third_party/blink/renderer/modules/webtransport/web_transport_error.h"

#include "third_party/blink/renderer/bindings/core/v8/v8_throw_dom_exception.h"
#include "third_party/blink/renderer/bindings/modules/v8/v8_web_transport_error_init.h"
#include "third_party/blink/renderer/platform/bindings/exception_code.h"
#include "third_party/blink/renderer/platform/bindings/script_state.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"

namespace blink {

WebTransportError* WebTransportError::Create(
    const WebTransportErrorInit* init) {}

v8::Local<v8::Value> WebTransportError::Create(
    v8::Isolate* isolate,
    std::optional<uint32_t> stream_error_code,
    String message,
    Source source) {}

WebTransportError::WebTransportError(PassKey,
                                     std::optional<uint32_t> stream_error_code,
                                     String message,
                                     Source source)
    :{}

WebTransportError::~WebTransportError() = default;

String WebTransportError::source() const {}

}  // namespace blink