/* Copyright: Meticube, Portugal, 2008. This software is licensed under the CC-GNU GPL. See http://creativecommons.org/licenses/GPL/2.0/ for human-readable Commons Deed, lawyer-readable legal code, and machine-readable digital code. Note: This file is based on the UCH 1.0 specification of the URC Consortium, http://myurc.org/TR/uch1.0/. */ using System; namespace org.myurc.uch.Exceptions.UIPM { public class UIPMFatalException : Exception { public UIPMFatalException() { } public UIPMFatalException(string message) : base(message) { } public UIPMFatalException(string message, Exception innerEx) : base(message, innerEx) { } } }