mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-24 00:00:12 +08:00
12 lines
316 B
C#
12 lines
316 B
C#
using System;
|
|
|
|
namespace Brotli
|
|
{
|
|
public class BrotliException:Exception
|
|
{
|
|
public BrotliException() : base() { }
|
|
public BrotliException(String message) : base(message) { }
|
|
public BrotliException(String message, Exception innerException) : base(message, innerException) { }
|
|
}
|
|
}
|