Skip to content
This repository was archived by the owner on Feb 27, 2024. It is now read-only.

Commit 8cfd599

Browse files
committed
Add QuicException
1 parent cc32cd3 commit 8cfd599

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// _ __ __
2+
// ___ ___ ___ _ __ __| | __ _ | \/ |
3+
// / __|/ __| / _ \| '_ \ / _` | / _` || |\/| |
4+
// \__ \\__ \| __/| | | || (_| || (_| || | | |
5+
// |___/|___/ \___||_| |_| \__,_| \__,_||_| |_|
6+
// |
7+
// Copyright 2021-2022 Łukasz "JustArchi" Domeradzki
8+
// Contact: [email protected]
9+
// |
10+
// Licensed under the Apache License, Version 2.0 (the "License");
11+
// you may not use this file except in compliance with the License.
12+
// You may obtain a copy of the License at
13+
// |
14+
// http://www.apache.org/licenses/LICENSE-2.0
15+
// |
16+
// Unless required by applicable law or agreed to in writing, software
17+
// distributed under the License is distributed on an "AS IS" BASIS,
18+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19+
// See the License for the specific language governing permissions and
20+
// limitations under the License.
21+
22+
using System.IO;
23+
using JetBrains.Annotations;
24+
using JustArchiNET.Madness.Helpers;
25+
26+
namespace JustArchiNET.Madness.QuicExceptionMadness;
27+
28+
[MadnessType(EMadnessType.Implementation)]
29+
[PublicAPI]
30+
public sealed class QuicException : IOException { }

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ Example:
7272
<Using Include="JustArchiNET.Madness.HttpRequestExceptionMadness.HttpRequestException" Alias="HttpRequestException" />
7373
<Using Include="JustArchiNET.Madness.OperatingSystemMadness.OperatingSystem" Alias="OperatingSystem" />
7474
<Using Include="JustArchiNET.Madness.PathMadness.Path" Alias="Path" />
75+
<Using Include="JustArchiNET.Madness.QuicExceptionMadness.QuicException" Alias="QuicException" />
7576
<Using Include="JustArchiNET.Madness.RandomMadness.Random" Alias="Random" />
7677
<Using Include="JustArchiNET.Madness.SHA256Madness.SHA256" Alias="SHA256" />
7778
<Using Include="JustArchiNET.Madness.SHA512Madness.SHA512" Alias="SHA512" />

0 commit comments

Comments
 (0)