mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
18 lines
565 B
C#
18 lines
565 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace BililiveRecorder.Flv.Parser
|
|
{
|
|
public class FlvException : Exception
|
|
{
|
|
/// <inheritdoc/>
|
|
public FlvException() { }
|
|
/// <inheritdoc/>
|
|
public FlvException(string message) : base(message) { }
|
|
/// <inheritdoc/>
|
|
public FlvException(string message, Exception innerException) : base(message, innerException) { }
|
|
/// <inheritdoc/>
|
|
protected FlvException(SerializationInfo info, StreamingContext context) : base(info, context) { }
|
|
}
|
|
}
|