View Javadoc
1   /*
2    * REPOWEB, repository manager.
3    *
4    * Terms of license - http://opensource.org/licenses/apachepl.php
5    */
6   package org.repoweb.model;
7   /***
8    * Thrown when the group id does not exist in the repository.
9    */
10  public class UnknownGroupIdException extends Exception {
11      private final String _groupId;
12  
13      public UnknownGroupIdException(String groupId) {
14          _groupId = groupId;
15      }
16  
17      public String getGroupId() {
18          return _groupId;
19      }
20  }