Reformat with 2-space indents
[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 package org.yaz4j.exception;
7
8 /**
9  * Generic exception representing any ZOOM-C error situation.
10  * @author jakub
11  */
12 public class ZoomException extends Exception {
13
14   public ZoomException() {
15     super();
16   }
17
18   public ZoomException(String msg) {
19     super(msg);
20   }
21 }