def getObject()

in app/lib/S3Actions.scala [74:80]


  def getObject(key: String, bucketName: String, s3Client: AmazonS3) = {
    try {
      s3Client.getObject(bucketName, key)
    } catch {
      case e: AmazonS3Exception if s3NotFoundStatusList.contains(e.getStatusCode) => None
    }
  }