예제 #1
0
        public static JException Throw(string message, Exception innerException)
        {
            JException ex = new JException(message, innerException);

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

            throw ex;
        }
예제 #3
0
        public static JException Throw(string message)
        {
            JException ex = new JException(message);

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