mylyn-gitea/io.gitea.mylyn.core/src/io/gitea/mylyn/core/exceptions/UnknownRepositoryException....

20 lines
561 B
Java

// Copyright (c) 2021, Fr.Terrot. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package io.gitea.mylyn.core.exceptions;
/**
* Exception raised when trying to access unkown repository.
*
*/
public class UnknownRepositoryException extends GiteaException {
private static final long serialVersionUID = 4976633904836890061L;
public UnknownRepositoryException(String project) {
super("Unknown repository " + project + " or insufficient access rights");
}
}