DEV Community

Query Filter
Query Filter

Posted on

gradle-47

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);
        }
    }
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)