package com.citi.get.etsf.kdb.client;
/**
* @deprecated Use {@link KdbC} instead. This class is maintained for backwards compatibility.
*/
@Deprecated
public class c extends KdbC {
// Pass-through constructors
public c() {
super();
}
public c(String host, int port) {
super(host, port);
}
// Pass-through inner class if legacy code referenced c.KException
public static class KException extends KdbC.KException {
public KException(String s) {
super(s);
}
}
}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)