12345678910 |
- using System;
- namespace Vinno.IUS.Common.Media.FFmpeg
- {
- public class FFmpegException : Exception
- {
- public FFmpegException(int exitCode, Exception innerException = null)
- : base($"Exit Code: {exitCode}.\nSee FFmpeg Log for more info.", innerException) { }
- }
- }
|