1 21 22 package org.apache.derby.iapi.services.io; 23 24 import java.io.IOException ; 25 26 36 public final class DerbyIOException 37 extends IOException { 38 39 40 private final String sqlState; 41 42 48 public DerbyIOException(String msg, String sqlState) { 49 super(msg); 50 this.sqlState = sqlState; 51 } 52 53 public String getSQLState() { 54 return sqlState; 55 } 56 } | Popular Tags |