summaryrefslogtreecommitdiff
path: root/lang/java/src/com/wiredtiger/db/WiredTigerException.java
blob: 6424cb3a92e8bafafc3d8dc459f91f28dbcef669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*-
 * Copyright (c) 2008-2013 WiredTiger, Inc.
 *	All rights reserved.
 *
 * See the file LICENSE for redistribution information.
 */
package com.wiredtiger.db;

/**
 * An exception that is generated by the WiredTiger application.
 */
public class WiredTigerException extends Exception {
    /**
     * Constructor.
     */
    public WiredTigerException(String msg) {
        super(msg);
    }
}