Esempio n. 1
0
        public static JException Throw(string message, Exception innerException)
        {
            JException ex = new JException(message, innerException);

            throw ex;
        }
Esempio n. 2
0
        public static JException Throw(Exception innerException, string message, params string[] args)
        {
            JException ex = new JException(string.Format(message, args), innerException);

            throw ex;
        }
Esempio n. 3
0
        public static JException Throw(string message)
        {
            JException ex = new JException(message);

            throw ex;
        }
Esempio n. 4
0
 public static void Fail(string message)
 {
     JException.Throw(message);
 }
Esempio n. 5
0
 public static JException Throw(Exception innerException, string message, params string[] args)
 {
     JException ex = new JException(string.Format(message, args), innerException);
     throw ex;
 }
Esempio n. 6
0
 public static JException Throw(string message, Exception innerException)
 {
     JException ex = new JException(message, innerException);
     throw ex;
 }
Esempio n. 7
0
 public static JException Throw(string message)
 {
     JException ex = new JException(message);
     throw ex;
 }