1 /*
2 * Copyright 2010 Fraunhofer Gesellschaft, Munich, Germany,
3 * for its Fraunhofer Institute for Computer Architecture and Software
4 * Technology (FIRST), Berlin, Germany. All rights reserved.
5 * http://www.first.fraunhofer.de/
6 */
7
8 package net.kwfgrid.gworkflowdl.structure;
9
10 /***
11 * Exception, indicating something is wrong with Place.capacity
12 */
13 public final class CapacityException extends Exception {
14 public CapacityException(final String mess) {
15 super(mess);
16 }
17 }