00001 /* 00002 * Name: TSqlerrorException.java 00003 * Author: Rafael Jesus Alcantara Perez 00004 * Summary: SQLERROR exception class 00005 * Date: $Date: 2003/06/28 14:43:37 $ 00006 * Revision: $Revision: 1.2 $ 00007 * 00008 * Copyright (C) 2002 Rafael Jesus Alcantara Perez <rafa@dedalo-ing.com> 00009 */ 00010 00012 package org.uesqlc; 00013 00014 import java.lang.Exception; 00015 00016 00018 public class TSqlerrorException extends Exception 00019 { 00020 00021 // 00022 // C O N S T R U C T O R S 00023 // 00024 00025 public TSqlerrorException() 00026 { 00027 super ("uesql: SQLERROR condition; " + TState._getDescription (TState.SQLSTATE)); 00028 } 00029 00030 } // class TSqlerrorException