|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace SIE.VSDK.Exceptions.DirectoryDestination
- {
- public class DirectoryDestinationIsEmptyException:Exception
- {
- public DirectoryDestinationIsEmptyException(string message)
- : base(message)
- {
- }
-
- public DirectoryDestinationIsEmptyException(string message, Exception inner)
- : base(message, inner)
- {
- }
- }
- }
|