Exemplo n.º 1
0
 public FFMpegException(FFMpegExceptionType type, string?message = null, Exception?innerException = null, string ffmpegErrorOutput = "", string ffmpegOutput = "")
     : base(message, innerException)
 {
     FfmpegOutput      = ffmpegOutput;
     FfmpegErrorOutput = ffmpegErrorOutput;
     Type = type;
 }
Exemplo n.º 2
0
 public FFMpegException(FFMpegExceptionType type, string message, FFMpegException innerException)
     : base(message, innerException)
 {
     Type = type;
 }
Exemplo n.º 3
0
 public FFMpegException(FFMpegExceptionType type, string message) : this(type, message, null)
 {
 }
Exemplo n.º 4
0
 public FFMpegException(FFMpegExceptionType type, StringBuilder sb) : this(type, sb.ToString(), null)
 {
 }
Exemplo n.º 5
0
 public FFMpegException(FFMpegExceptionType type) : this(type, null, null)
 {
 }
Exemplo n.º 6
0
 public FFMpegStreamFormatException(FFMpegExceptionType type, string message, Exception?innerException = null)
     : base(type, message, innerException)
 {
 }
Exemplo n.º 7
0
 public FFMpegException(FFMpegExceptionType type, string message)
     : base(message)
 {
     FFMpegErrorOutput = string.Empty;
     Type = type;
 }
Exemplo n.º 8
0
 public FFMpegException(FFMpegExceptionType type, string message, string ffMpegErrorOutput = "")
     : base(message)
 {
     FFMpegErrorOutput = ffMpegErrorOutput;
     Type = type;
 }
Exemplo n.º 9
0
 public FFMpegException(FFMpegExceptionType type, string message) : base(message)
 {
     Type = type;
 }
Exemplo n.º 10
0
 public FFMpegException(FFMpegExceptionType type)
 {
     Type = type;
 }