5 changed files with 52 additions and 9 deletions
@ -0,0 +1,28 @@ |
|||
using System; |
|||
using System.Runtime.Serialization; |
|||
using Volo.Abp; |
|||
|
|||
namespace LINGYUN.Abp.Location |
|||
{ |
|||
public class LocationResolveException : AbpException, IBusinessException |
|||
{ |
|||
public LocationResolveException() |
|||
{ |
|||
} |
|||
|
|||
public LocationResolveException(string message) |
|||
: base(message) |
|||
{ |
|||
} |
|||
|
|||
public LocationResolveException(string message, Exception innerException) |
|||
: base(message, innerException) |
|||
{ |
|||
} |
|||
|
|||
public LocationResolveException(SerializationInfo serializationInfo, StreamingContext context) |
|||
: base(serializationInfo, context) |
|||
{ |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue