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