コード例 #1
0
ファイル: FormulaException.cs プロジェクト: morninn/PetSof
 /**
  * Constructs this exception with the specified message
  *
  * @param m the message
  */
 public FormulaException(FormulaMessage m)
     : base(m.getMessage())
 {
 }
コード例 #2
0
 /**
  * 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)
 {
 }
コード例 #3
0
ファイル: FormulaException.cs プロジェクト: morninn/PetSof
 /**
  * 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)
 {
 }
コード例 #4
0
 /**
  * Constructs this exception with the specified message
  *
  * @param m the message
  */
 public FormulaException(FormulaMessage m)
     : base(m.getMessage())
 {
 }