Source code: com/flexstor/common/services/SrvcNotAvailException.java
1 /*
2 * SrvcNotAvailException.java
3 *
4 * Copyright $Date: 2003/08/11 02:22:34 $ FLEXSTOR.net Inc.
5 *
6 * This work is licensed for use and distribution under license terms found at
7 * http://www.flexstor.org/license.html
8 *
9 */
10
11 package com.flexstor.common.services;
12
13 public final class SrvcNotAvailException
14 extends java.lang.Exception
15 {
16 public SrvcNotAvailException( String sMsg )
17 {
18 super( sMsg );
19 }
20 }