/* * Copyright (c) 2004, 2005, 2006 TADA AB - Taby Sweden * Distributed under the terms shown in the file COPYRIGHT * found in the root folder of this project or at * http://eng.tada.se/osprojects/COPYRIGHT.html */ package org.postgresql.pljava.jdbc; import java.sql.SQLException; /** * @author <a href="mailto:thomas.hallgren@ironjug.com">Thomas Hallgren</a> */ public class StatementClosedException extends SQLException { private static final long serialVersionUID = 9108917755099200271L; public static final String INVALID_SQL_STATEMENT_NAME = "26000"; public StatementClosedException() { super("Statement is closed", INVALID_SQL_STATEMENT_NAME); } }