1 21 22 package org.continuent.sequoia.common.exceptions; 23 24 25 import org.continuent.sequoia.common.exceptions.driver.DriverSQLException; 26 27 33 public class ProtocolException extends DriverSQLException 34 { 35 private static final long serialVersionUID = 5211274551332052100L; 36 37 40 public ProtocolException() 41 { 42 super(); 43 } 44 45 50 public ProtocolException(String message) 51 { 52 super(message); 53 } 54 55 } 56 | Popular Tags |