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 006 package fc.jdbc.dbo; 007 008 import java.io.*; 009 import java.sql.*; 010 import java.util.*; 011 012 import fc.jdbc.*; 013 import fc.io.*; 014 import fc.util.*; 015 016 /** 017 Thrown when a DBO Object cannot be saved because the 018 information contained in it fails validity tests. 019 */ 020 public class ValidateException extends DBOException 021 { 022 public ValidateException(String reason) { 023 super(reason); 024 } 025 }