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

com.tencent.devops.leaf.server.controller.LeafServerException Maven / Gradle / Ivy

package com.tencent.devops.leaf.server.controller;

import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;

@ResponseStatus(code=HttpStatus.INTERNAL_SERVER_ERROR)
public class LeafServerException extends RuntimeException {
    public LeafServerException(String msg) {
        super(msg);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy