FFmpegException.cs 293 B

12345678910
  1. using System;
  2. namespace Vinno.IUS.Common.Media.FFmpeg
  3. {
  4. public class FFmpegException : Exception
  5. {
  6. public FFmpegException(int exitCode, Exception innerException = null)
  7. : base($"Exit Code: {exitCode}.\nSee FFmpeg Log for more info.", innerException) { }
  8. }
  9. }