| Home >> All >> com >> flexstor >> common >> [ util Javadoc ] |
Source code: com/flexstor/common/util/DiagnosticPreconditionException.java
1 /* 2 * DiagnosticPreconditionException.java 3 * 4 * Copyright $Date: 2003/08/11 02:22:30 $ 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.util; 12 13 public class DiagnosticPreconditionException extends IllegalStateException 14 { 15 public DiagnosticPreconditionException() { 16 super(); 17 } 18 19 public DiagnosticPreconditionException(String message) { 20 super(message); 21 } 22 }