create new file system (based on Orchard)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
namespace zero.FileStorage;
|
||||
|
||||
public class FileSystemException : Exception
|
||||
{
|
||||
public FileSystemException() { }
|
||||
|
||||
public FileSystemException(string message) : base(message) { }
|
||||
|
||||
public FileSystemException(string message, Exception innerException) : base(message, innerException) { }
|
||||
}
|
||||
Reference in New Issue
Block a user