private string FindException(OctopusPackageDeleteExceptionEnum exceptionId)
        {
            string returned = String.Empty;
            switch(exceptionId)
            {
                case OctopusPackageDeleteExceptionEnum.PackageIsNull:
                    returned = "PackageExceptionPackageIsNull.Text";
                    break;

                case OctopusPackageDeleteExceptionEnum.AlreadyDeleted:
                    returned = "PackageExceptionAlreadyDeleted.Text";
                    break;
            }
            return returned;
        }
 public OctopusPackageDeleteException(OctopusPackageDeleteExceptionEnum exceptionCode)
 {
     code = FindException(exceptionCode);
 }