You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/Brotli.Core/Exception/BrotliException.cs

12 lines
316 B

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) { }
}
}