From 7d91e3c19f44b5cddb5cba9ec786cb752b57d4a6 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 27 Feb 2021 18:27:45 +0530 Subject: [PATCH] refactoring done. --- ...ServiceException.cs => DnsWebServiceException.cs} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename DnsServerCore/{WebServiceException.cs => DnsWebServiceException.cs} (68%) diff --git a/DnsServerCore/WebServiceException.cs b/DnsServerCore/DnsWebServiceException.cs similarity index 68% rename from DnsServerCore/WebServiceException.cs rename to DnsServerCore/DnsWebServiceException.cs index 3a59de54..c687622b 100644 --- a/DnsServerCore/WebServiceException.cs +++ b/DnsServerCore/DnsWebServiceException.cs @@ -1,6 +1,6 @@ /* Technitium DNS Server -Copyright (C) 2019 Shreyas Zare (shreyas@technitium.com) +Copyright (C) 2021 Shreyas Zare (shreyas@technitium.com) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,23 +21,23 @@ using System; namespace DnsServerCore { - public class WebServiceException : Exception + public class DnsWebServiceException : Exception { #region constructors - public WebServiceException() + public DnsWebServiceException() : base() { } - public WebServiceException(string message) + public DnsWebServiceException(string message) : base(message) { } - public WebServiceException(string message, Exception innerException) + public DnsWebServiceException(string message, Exception innerException) : base(message, innerException) { } - protected WebServiceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) + protected DnsWebServiceException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { }