/* 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; using System.Collections.Generic; using System.Text; namespace org.myurc.uch.Exceptions { public class TANotImplementedException : Exception { public TANotImplementedException() { } public TANotImplementedException(string message) : base(message) { } public TANotImplementedException(string message, Exception innerEx) : base(message, innerEx) { } } }