/*- * 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); } }