Exemple #1
0
 public static void OnInvalidData(string msg, params object[] args)
 {
     msg = string.Format(msg, args);
     if (LightDBMgr.InvalidDataHandler == null)
     {
         throw new DataHolderException(msg, new object[0]);
     }
     LightDBMgr.InvalidDataHandler(msg);
 }