1 33 34 35 package com.internetcds.jdbc.tds; 36 37 import com.internetcds.jdbc.tds.TdsException; 38 39 public class TdsConfused extends TdsException 40 { 41 public static final String cvsVersion = "$Id: TdsConfused.java,v 1.1 2006/06/23 10:39:30 sinisa Exp $"; 42 43 44 public TdsConfused(String msg) 45 { 46 super("Protocol confusion- " + msg); 47 } 48 public TdsConfused() 49 { 50 super("Protocol confusion"); 51 } 52 } 53 | Popular Tags |