HomeSort by: relevance | last modified time | path
    Searched refs:ZLibException (Results 1 - 4 of 4) sorted by relevancy

  /src/common/dist/zlib/contrib/dotzlib/DotZLib/
DotZLib.cs 86 public class ZLibException : ApplicationException
89 /// Initializes a new instance of the <see cref="ZLibException"/> class with a specified
94 public ZLibException(int errorCode, string msg) : base(String.Format("ZLib error {0} {1}", errorCode, msg))
99 /// Initializes a new instance of the <see cref="ZLibException"/> class with a specified
103 public ZLibException(int errorCode) : base(String.Format("ZLib error {0}", errorCode))
Inflater.cs 41 throw new ZLibException(retval, "Could not initialize inflater");
Deflater.cs 42 throw new ZLibException(retval, "Could not initialize deflater");
GZipStream.cs 52 /// <exception cref="ZLibException">If an error occurred in the internal zlib function</exception>
58 throw new ZLibException(-1, "Could not open " + fileName);
65 /// <exception cref="ZLibException">If an error occurred in the internal zlib function</exception>
71 throw new ZLibException(-1, "Could not open " + fileName);

Completed in 12 milliseconds