View Javadoc
1 // 2 // Copyright 1998 CDS Networks, Inc., Medford Oregon 3 // 4 // All rights reserved. 5 // 6 // Redistribution and use in source and binary forms, with or without 7 // modification, are permitted provided that the following conditions are met: 8 // 1. Redistributions of source code must retain the above copyright 9 // notice, this list of conditions and the following disclaimer. 10 // 2. Redistributions in binary form must reproduce the above copyright 11 // notice, this list of conditions and the following disclaimer in the 12 // documentation and/or other materials provided with the distribution. 13 // 3. All advertising materials mentioning features or use of this software 14 // must display the following acknowledgement: 15 // This product includes software developed by CDS Networks, Inc. 16 // 4. The name of CDS Networks, Inc. may not be used to endorse or promote 17 // products derived from this software without specific prior 18 // written permission. 19 // 20 // THIS SOFTWARE IS PROVIDED BY CDS NETWORKS, INC. ``AS IS'' AND 21 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 // ARE DISCLAIMED. IN NO EVENT SHALL CDS NETWORKS, INC. BE LIABLE 24 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 // OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 // OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 // SUCH DAMAGE. 31 // 32 33 34 35 package com.internetcds.jdbc.tds; 36 37 import com.internetcds.jdbc.tds.TdsException; 38 import com.internetcds.util.HexDump; 39 40 41 public class TdsUnknownPacketType extends TdsException 42 { 43 public static final String cvsVersion = "$Id: TdsUnknownPacketType.java,v 1.1 2003/04/29 18:07:53 sinisa Exp $"; 44 45 46 public TdsUnknownPacketType( 47 byte packetType, 48 byte data[]) 49 { 50 super("Unknown packet type 0x" + Integer.toHexString(packetType) 51 + "\nPacket header is \n" 52 + com.internetcds.util.HexDump.hexDump(data)); 53 } 54 55 public static void main(String args[]) 56 throws TdsUnknownPacketType 57 { 58 byte[] mydata = 59 { 60 (byte)0x00, (byte)0x01, (byte)0x02, (byte)0x03, 61 (byte)0x04, (byte)0x05, (byte)0x06, (byte)0x07, 62 (byte)0x08, (byte)0x09, (byte)0x0a, (byte)0x0b, 63 (byte)0x0c, (byte)0x0d, (byte)0x0e, (byte)0x0f, 64 (byte)0x10, (byte)0x11, (byte)0x12, (byte)0x13, 65 (byte)0x14, (byte)0x15, (byte)0x16, (byte)0x17, 66 (byte)0x18, (byte)0x19, (byte)0x1a, (byte)0x1b, 67 (byte)0x1c, (byte)0x1d, (byte)0x1e, (byte)0x1f, 68 (byte)0x20, (byte)0x21, (byte)0x22, (byte)0x23, 69 (byte)0x24, (byte)0x25, (byte)0x26, (byte)0x27, 70 (byte)0x28, (byte)0x29, (byte)0x2a, (byte)0x2b, 71 (byte)0x2c, (byte)0x2d, (byte)0x2e, (byte)0x2f, 72 (byte)0x30, (byte)0x31, (byte)0x32, (byte)0x33, 73 (byte)0x34, (byte)0x35, (byte)0x36, (byte)0x37, 74 (byte)0x38, (byte)0x39, (byte)0x3a, (byte)0x3b, 75 (byte)0x3c, (byte)0x3d, (byte)0x3e, (byte)0x3f, 76 (byte)0x40, (byte)0x41, (byte)0x42, (byte)0x43, 77 (byte)0x44, (byte)0x45, (byte)0x46, (byte)0x47, 78 (byte)0x48, (byte)0x49, (byte)0x4a, (byte)0x4b, 79 (byte)0x4c, (byte)0x4d, (byte)0x4e, (byte)0x4f, 80 (byte)0x50, (byte)0x51, (byte)0x52, (byte)0x53, 81 (byte)0x54, (byte)0x55, (byte)0x56, (byte)0x57, 82 (byte)0x58, (byte)0x59, (byte)0x5a, (byte)0x5b, 83 (byte)0x5c, (byte)0x5d, (byte)0x5e, (byte)0x5f, 84 (byte)0x60, (byte)0x61, (byte)0x62, (byte)0x63, 85 (byte)0x64, (byte)0x65, (byte)0x66, (byte)0x67, 86 (byte)0x68, (byte)0x69, (byte)0x6a, (byte)0x6b, 87 (byte)0x6c, (byte)0x6d, (byte)0x6e, (byte)0x6f, 88 (byte)0x70, (byte)0x71, (byte)0x72, (byte)0x73, 89 (byte)0x74, (byte)0x75, (byte)0x76, (byte)0x77, 90 (byte)0x78, (byte)0x79, (byte)0x7a, (byte)0x7b, 91 (byte)0x7c, (byte)0x7d, (byte)0x7e, (byte)0x7f, 92 (byte)0x80, (byte)0x81, (byte)0x82, (byte)0x83, 93 (byte)0x84, (byte)0x85, (byte)0x86, (byte)0x87, 94 (byte)0x88, (byte)0x89, (byte)0x8a, (byte)0x8b, 95 (byte)0x8c, (byte)0x8d, (byte)0x8e, (byte)0x8f, 96 (byte)0x90, (byte)0x91, (byte)0x92, (byte)0x93, 97 (byte)0x94, (byte)0x95, (byte)0x96, (byte)0x97, 98 (byte)0x98, (byte)0x99, (byte)0x9a, (byte)0x9b, 99 (byte)0x9c, (byte)0x9d, (byte)0x9e, (byte)0x9f, 100 (byte)0xa0, (byte)0xa1, (byte)0xa2, (byte)0xa3, 101 (byte)0xa4, (byte)0xa5, (byte)0xa6, (byte)0xa7, 102 (byte)0xa8, (byte)0xa9, (byte)0xaa, (byte)0xab, 103 (byte)0xac, (byte)0xad, (byte)0xae, (byte)0xaf, 104 (byte)0xb0, (byte)0xb1, (byte)0xb2, (byte)0xb3, 105 (byte)0xb4, (byte)0xb5, (byte)0xb6, (byte)0xb7, 106 (byte)0xb8, (byte)0xb9, (byte)0xba, (byte)0xbb, 107 (byte)0xbc, (byte)0xbd, (byte)0xbe, (byte)0xbf, 108 (byte)0xc0, (byte)0xc1, (byte)0xc2, (byte)0xc3, 109 (byte)0xc4, (byte)0xc5, (byte)0xc6, (byte)0xc7, 110 (byte)0xc8, (byte)0xc9, (byte)0xca, (byte)0xcb, 111 (byte)0xcc, (byte)0xcd, (byte)0xce, (byte)0xcf, 112 (byte)0xd0, (byte)0xd1, (byte)0xd2, (byte)0xd3, 113 (byte)0xd4, (byte)0xd5, (byte)0xd6, (byte)0xd7, 114 (byte)0xd8, (byte)0xd9, (byte)0xda, (byte)0xdb, 115 (byte)0xdc, (byte)0xdd, (byte)0xde, (byte)0xdf, 116 (byte)0xe0, (byte)0xe1, (byte)0xe2, (byte)0xe3, 117 (byte)0xe4, (byte)0xe5, (byte)0xe6, (byte)0xe7, 118 (byte)0xe8, (byte)0xe9, (byte)0xea, (byte)0xeb, 119 (byte)0xec, (byte)0xed, (byte)0xee, (byte)0xef, 120 (byte)0xf0, (byte)0xf1, (byte)0xf2, (byte)0xf3, 121 (byte)0xf4, (byte)0xf5, (byte)0xf6, (byte)0xf7, 122 (byte)0xf8, (byte)0xf9, (byte)0xfa, (byte)0xfb, 123 (byte)0xfc, (byte)0xfd, (byte)0xfe, (byte)0xff, 124 (byte)0x00 125 }; 126 throw new TdsUnknownPacketType((byte)12, mydata); 127 } 128 }

This page was automatically generated by Maven