mirror of https://github.com/abpframework/abp.git
3 changed files with 72 additions and 6 deletions
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Runtime.Serialization; |
|||
|
|||
namespace Volo.Abp.BlobStoring |
|||
{ |
|||
public class BlobAlreadyExistsException : AbpException |
|||
{ |
|||
public BlobAlreadyExistsException() |
|||
{ |
|||
|
|||
} |
|||
|
|||
public BlobAlreadyExistsException(string message) |
|||
: base(message) |
|||
{ |
|||
|
|||
} |
|||
|
|||
public BlobAlreadyExistsException(string message, Exception innerException) |
|||
: base(message, innerException) |
|||
{ |
|||
|
|||
} |
|||
|
|||
public BlobAlreadyExistsException(SerializationInfo serializationInfo, StreamingContext context) |
|||
: base(serializationInfo, context) |
|||
{ |
|||
|
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue