Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: bdafb514463075290c0611cca72c08a4c6bd6e25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
 * Copyright (c) 2007-2012, 2015 Eike Stepper (Berlin, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.server;

import org.eclipse.emf.cdo.common.util.CDOException;
import org.eclipse.emf.cdo.session.CDOSession;

/**
 * An unchecked exception being thrown when opening a {@link CDOSession session} to a named {@link IRepository
 * repository} that cannot be found.
 *
 * @author Eike Stepper
 */
public class RepositoryNotFoundException extends CDOException
{
  private static final long serialVersionUID = 1L;

  public RepositoryNotFoundException(String repositoryName)
  {
    super(repositoryName);
  }

  public String getRepositoryName()
  {
    return super.getMessage();
  }

  @Override
  public String getMessage()
  {
    return "Repository not found: " + getRepositoryName(); //$NON-NLS-1$
  }
}

Back to the top