setDetails() 공개 메소드

public setDetails ( string details ) : void
details string
리턴 void
예제 #1
0
 public static void mngError(Exception ex,
                      string function,
                      string module,
                      string infoAdd,
                      string title,
                      eErrorLevel level,
                      eErrorType varType,
                      object connection)
 {
     // TODO: implement function
     fErrors f = new fErrors();
     f.setErrorIcon();
     f.setDetails(ex.Message);
     f.ShowDialog();
 }
예제 #2
0
        public static void mngError(Exception ex,
                                    string function,
                                    string module,
                                    string infoAdd,
                                    string title,
                                    eErrorLevel level,
                                    eErrorType varType,
                                    object connection)
        {
            // TODO: implement function
            fErrors f = new fErrors();

            f.setErrorIcon();
            f.setDetails(ex.Message);
            f.ShowDialog();
        }