Initial commit

This commit is contained in:
Daniel
2021-05-15 03:40:58 +03:00
commit f4c3bc5671
58 changed files with 5358 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
using System;
namespace CleanFlashCommon {
public class InstallException : Exception {
public InstallException(string message) : base(message) {
}
}
}