View Javadoc
1   package com.github.davidmoten.aws.lw.client;
2   
3   public final class MaxAttemptsExceededException extends RuntimeException {
4   
5       /**
6        * 
7        */
8       private static final long serialVersionUID = -5945914615129555985L;
9       
10      public MaxAttemptsExceededException(String message, Throwable e) {
11          super(message, e);
12      }
13  
14  }