1 21 22 package org.apache.derby.impl.drda; 23 24 class DRDAProtocolExceptionInfo { 25 26 30 31 42 protected int errorCodePoint; 43 44 protected int svrcod; 46 47 51 protected int errCdCodePoint ; 52 53 protected boolean sendsCodpntArg; 55 56 DRDAProtocolExceptionInfo(int errorCodePoint, int svrcod, 57 int errCdCodePoint, 58 boolean sendsCodpntArg) 59 { 60 this.errorCodePoint = errorCodePoint; 61 this.svrcod = svrcod; 62 this.errCdCodePoint = errCdCodePoint; 63 this.sendsCodpntArg = sendsCodpntArg; 64 } 65 66 67 } 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | Popular Tags |