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

io.vertx.tp.error._409SessionConflictException Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.tp.error;

import io.vertx.core.http.HttpStatusCode;
import io.vertx.up.exception.WebException;

public class _409SessionConflictException extends WebException {

    public _409SessionConflictException(final Class clazz,
                                        final String sessionId) {
        super(clazz, sessionId);
    }

    @Override
    public int getCode() {
        return -80214;
    }

    @Override
    public HttpStatusCode getStatus() {
        return HttpStatusCode.CONFLICT;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy