01: /**********************************************************************************
02: *
03: * $Id: ConflictingExternalIdException.java 9271 2006-05-10 21:52:49Z ray@media.berkeley.edu $
04: *
05: ***********************************************************************************
06: *
07: * Copyright (c) 2005 The Regents of the University of California, The MIT Corporation
08: *
09: * Licensed under the Educational Community License, Version 1.0 (the "License");
10: * you may not use this file except in compliance with the License.
11: * You may obtain a copy of the License at
12: *
13: * http://www.opensource.org/licenses/ecl1.php
14: *
15: * Unless required by applicable law or agreed to in writing, software
16: * distributed under the License is distributed on an "AS IS" BASIS,
17: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18: * See the License for the specific language governing permissions and
19: * limitations under the License.
20: *
21: **********************************************************************************/package org.sakaiproject.service.gradebook.shared;
22:
23: /**
24: * Indicates that an assignment name conflict within a gradebook would ensue
25: * from the requested operation.
26: *
27: * @author <a href="mailto:jholtzman@berkeley.edu">Josh Holtzman</a>
28: */
29: public class ConflictingExternalIdException extends GradebookException {
30: public ConflictingExternalIdException(String message) {
31: super(message);
32: }
33: }
|