public Method withThrownExceptions()

in src/main/java/com/amazonaws/eclipse/simpleworkflow/asynchrony/objectmodel/Method.java [152:160]


    public Method withThrownExceptions(Collection<String> thrownExceptions) {
        List<String> thrownExceptionsCopy = new ArrayList<String>();
        if (thrownExceptions != null) {
            thrownExceptionsCopy.addAll(thrownExceptions);
        }
        
        this.thrownExceptions = thrownExceptionsCopy;
        return this;
    }