All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ziqni.admin.sdk.context.WsClientTransportError Maven / Gradle / Ivy

There is a newer version: 1.0.21
Show newest version
package com.ziqni.admin.sdk.context;

import org.springframework.messaging.simp.stomp.StompSession;

public class WsClientTransportError {

    private final StompSession session;
    private final Throwable exception;

    public StompSession getSession() {
        return session;
    }

    public Throwable getException() {
        return exception;
    }

    public WsClientTransportError(StompSession session, Throwable exception) {
        this.session = session;
        this.exception = exception;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy