001// Copyright (c) 2001 Hursh Jain (http://www.mollypages.org) 002// The Molly framework is freely distributable under the terms of an 003// MIT-style license. For details, see the molly pages web site at: 004// http://www.mollypages.org/. Use, modify, have fun ! 005 006package fc.jdbc.dbo; 007 008import java.io.*; 009import java.sql.*; 010import java.util.*; 011 012import fc.jdbc.*; 013import fc.io.*; 014import fc.util.*; 015 016/** 017Captures exceptional conditions in the dbo framework. 018*/ 019public class DBOException extends SQLException 020{ 021public DBOException(String reason) { 022 super(reason); 023 } 024}