1 /*
2 * This file is a part of CAST project.
3 * (c) Copyright 2007, AGH University of Science & Technology
4 * https://caribou.iisg.agh.edu.pl/trac/cast
5 *
6 * Licensed under the Eclipse Public License, Version 1.0 (the "License").
7 * You may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 * http://www.eclipse.org/legal/epl-v10.html
10 */
11 /*
12 * File: ResourceException.java
13 * Created: 2009-07-17
14 * Author: kpietak
15 * $Id$
16 */
17
18 package pl.edu.agh.cast.resource;
19
20 /**
21 * An exception for all errors associated with resources.
22 *
23 * @author AGH CAST Team
24 */
25 public class ResourceException extends Exception {
26
27 /**
28 * Serial version uid.
29 */
30 private static final long serialVersionUID = -4003766120192015059L;
31
32 /**
33 * Constructor.
34 */
35 public ResourceException() {
36
37 }
38
39 /**
40 * Constructor.
41 *
42 * @param msg
43 * exception message
44 */
45 public ResourceException(String msg) {
46 super(msg);
47 }
48
49 }