74a069d22bc2c53fa7e6f35fc1548b4ee38b9f63
[yaz4j-moved-to-github.git] / src / main / java / org / yaz4j / exception / ZoomException.java
1 /*
2  * Copyright (c) 1995-2010, Index Data
3  * All rights reserved.
4  * See the file LICENSE for details.
5  */
6
7 package org.yaz4j.exception;
8
9 /**
10  * Generic exception representing any ZOOM-C error situation.
11  * @author jakub
12  */
13 public class ZoomException extends Exception {
14
15   public ZoomException() {
16     super();
17   }
18
19   public ZoomException(String msg) {
20     super(msg);
21   }
22
23 }