Example usage for com.amazonaws.services.sns.model NotFoundException NotFoundException

List of usage examples for com.amazonaws.services.sns.model NotFoundException NotFoundException

Introduction

In this page you can find the example usage for com.amazonaws.services.sns.model NotFoundException NotFoundException.

Prototype

public NotFoundException(String message) 

Source Link

Document

Constructs a new NotFoundException with the specified error message.

Usage

From source file:eu.openg.aws.sns.internal.SNSExceptionBuilder.java

License:Apache License

static SNSExceptionBuilder newNotFoundException(String message) {
    return new SNSExceptionBuilder(new NotFoundException(message), "NotFound", 404);
}