1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
using System; using System.Runtime.InteropServices; namespace Ionic.Zlib { [Guid("ebc25cf6-9120-4283-b972-0e5520d0000E")] public class ZlibException : Exception { public ZlibException() { } public ZlibException(string s) : base(s) { } } }