folsom/src/main/java/com/spotify/folsom/client/ascii/DeleteWithCasRequest.java [75:84]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        succeed(MemcacheStatus.KEY_NOT_FOUND);
        return;
      case CLIENT_ERROR:
        MemcacheAuthenticationException exception =
            new MemcacheAuthenticationException(
                "Authentication required by server. Client not authenticated.");
        fail(exception, server);
        return;
      default:
        throw new IOException("Unexpected line: " + response.type);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



folsom/src/main/java/com/spotify/folsom/client/ascii/SetRequest.java [166:176]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          succeed(MemcacheStatus.KEY_NOT_FOUND);
        }
        return;
      case CLIENT_ERROR:
        MemcacheAuthenticationException exception =
            new MemcacheAuthenticationException(
                "Authentication required by server. Client not authenticated.");
        fail(exception, server);
        return;
      default:
        throw new IOException("Unexpected line: " + response.type);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



