We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c13a24 commit 5fe9798Copy full SHA for 5fe9798
1 file changed
README.md
@@ -45,7 +45,7 @@ dependencies {
45
46
### Exc instantiation and identification of a reason
47
48
-The following code instantiate a `Exc` and throws it.
+The following code instantiates an `Exc` and throws it.
49
50
```java
51
package sample;
@@ -58,7 +58,7 @@ public class SampleClass {
58
59
public void sampleMethod() throws Exc {
60
...
61
- throw new Exc(new InvalidOutOfRange("array", i, 0, array.length));
+ throw new Exc(new IndexOutOfRange("array", i, 0, array.length));
62
}
63
64
```
0 commit comments