/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997-2002 * Sleepycat Software. All rights reserved. * * $Id: DbException.java 2904 2003-11-20 22:14:35Z toshok $ */ package com.sleepycat.db; /** * * @author Donald D. Anderson */ public class DbException extends Exception { // methods // public DbException(String s) { super(s); } public DbException(String s, int errno) { super(s); this.errno_ = errno; } public String toString() { String s = super.toString(); if (errno_ == 0) return s; else return s + ": " + DbEnv.strerror(errno_); } // get/set methods // public int get_errno() { return errno_; } // private data // private int errno_ = 0; } // end of DbException.java