From 2b67ec0e4a42ad1069a477040a549c3e19be9e36 Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Wed, 11 Jul 2012 16:59:04 -0400
Subject: [PATCH] Fix for line number identification bug in LuceneExecutor (issue 105)

---
 src/com/gitblit/GitBlitException.java |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/com/gitblit/GitBlitException.java b/src/com/gitblit/GitBlitException.java
index 360f9f0..7ab0f99 100644
--- a/src/com/gitblit/GitBlitException.java
+++ b/src/com/gitblit/GitBlitException.java
@@ -31,6 +31,10 @@
 		super(message);
 	}
 
+	public GitBlitException(Throwable cause) {
+		super(cause);
+	}
+
 	/**
 	 * Exception to indicate that the client should prompt for credentials
 	 * because the requested action requires authentication.

--
Gitblit v1.9.1