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

org.finos.legend.sdlc.server.gitlab.auth.GitLabAuthOtherException Maven / Gradle / Ivy

// Copyright 2020 Goldman Sachs
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package org.finos.legend.sdlc.server.gitlab.auth;

import org.finos.legend.sdlc.server.gitlab.mode.GitLabMode;

/**
 * Exception for all other exceptions encountered during auth.
 */
public class GitLabAuthOtherException extends GitLabAuthException
{
    GitLabAuthOtherException(String user, GitLabMode mode, String detail, Throwable cause)
    {
        super(user, mode, detail, cause);
    }

    GitLabAuthOtherException(String user, GitLabMode mode, String detail)
    {
        super(user, mode, detail);
    }

    GitLabAuthOtherException(String user, GitLabMode mode, Throwable cause)
    {
        super(user, mode, cause);
    }

    GitLabAuthOtherException(GitLabMode mode, String detail, Throwable cause)
    {
        super(mode, detail, cause);
    }

    GitLabAuthOtherException(String user, GitLabMode mode)
    {
        super(user, mode);
    }

    GitLabAuthOtherException(GitLabMode mode, String detail)
    {
        super(mode, detail);
    }

    GitLabAuthOtherException(String detail, Throwable cause)
    {
        super(detail, cause);
    }

    GitLabAuthOtherException(String detail)
    {
        super(detail);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy