public void PDFParserExceptionConstructorTest1()
        {
            string             message = "message"; // TODO: Initialize to an appropriate value
            PDFParserException target  = new PDFParserException(message);

            Assert.AreEqual(message, target.Message);
            Assert.IsNull(target.InnerException);
        }
        public void PDFParserExceptionConstructorTest()
        {
            PDFParserException target = new PDFParserException();

            Assert.IsNull(target.InnerException);
        }