1 /*
2 * Copyright (c) 2003 by Atlassian Software Systems Pty. Ltd.
3 * All rights reserved.
4 */
5 package com.atlassian.bonnie;
6
7
8 /**
9 * Thrown when a disaster happens in the underlying Lucene layer.
10 */
11 public class LuceneException extends RuntimeException
12 {
13 public LuceneException(String message)
14 {
15 super(message);
16 }
17
18 public LuceneException(Throwable cause)
19 {
20 super(cause);
21 }
22
23 public LuceneException(String msg, Throwable cause)
24 {
25 super(msg, cause);
26 }
27 }