mirror of
https://gitlab.com/cleanflash/installer.git
synced 2026-08-14 03:11:37 +08:00
11 lines
181 B
C#
11 lines
181 B
C#
using System;
|
|
|
|
namespace CleanFlashCommon {
|
|
public class InstallException : Exception {
|
|
|
|
public InstallException(string message) : base(message) {
|
|
|
|
}
|
|
}
|
|
}
|