/** * Constructs this exception with the specified message * * @param m the message */ public FormulaException(FormulaMessage m) : base(m.getMessage()) { }
/** * Constructs this exception with the specified message * * @param m the message * @param val the value */ public FormulaException(FormulaMessage m,string val) : base(m.getMessage() + " " + val) { }
/** * Constructs this exception with the specified message * * @param m the message * @param val the value */ public FormulaException(FormulaMessage m, string val) : base(m.getMessage() + " " + val) { }