14 lines
412 B
C#
14 lines
412 B
C#
using System;
|
|
|
|
namespace EonaCat.Quic.Exceptions
|
|
{
|
|
// This file is part of the EonaCat project(s) which is released under the Apache License.
|
|
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
|
|
|
|
public class ConnectionException : Exception
|
|
{
|
|
public ConnectionException(string message) : base($"EonaCat Network: {message}")
|
|
{
|
|
}
|
|
}
|
|
} |