ArchiveException.cs 206 B

123456789101112
  1. using System;
  2. namespace SharpCompress.Common
  3. {
  4. public class ArchiveException : Exception
  5. {
  6. public ArchiveException(string message)
  7. : base(message)
  8. {
  9. }
  10. }
  11. }