1 /*2 * UpdateException.java3 *4 * Created on 6. Februar 2004, 13:115 */6 7 package org.contineo.setup;8 9 /**10 *11 * @author Michael Scholz12 */13 public class UpdateException extends java.lang.Exception {14 15 private static final long serialVersionUID = 1L;16 17 18 /**19 * Creates a new instance of <code>UpdateException</code> without detail message.20 */21 public UpdateException() {22 }23 24 25 /**26 * Constructs an instance of <code>UpdateException</code> with the specified detail message.27 * @param msg the detail message.28 */29 public UpdateException(String msg) {30 super(msg);31 }32 }33