diff options
author | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-10-22 12:09:32 +0200 |
---|---|---|
committer | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-10-22 12:09:32 +0200 |
commit | 218903663422b23e9b4723154b9151ea143ddb1e (patch) | |
tree | 052dae941bbf214708687b3de02de8ca0a8d4076 /src/pl/edu/mimuw/cloudatlas/model | |
parent | bc34c65fea5e4422fe40d2fa2f029c96dd8d703d (diff) |
Fix comments in UnsupportedConversionException
Diffstat (limited to 'src/pl/edu/mimuw/cloudatlas/model')
-rw-r--r-- | src/pl/edu/mimuw/cloudatlas/model/UnsupportedConversionException.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pl/edu/mimuw/cloudatlas/model/UnsupportedConversionException.java b/src/pl/edu/mimuw/cloudatlas/model/UnsupportedConversionException.java index 98cbd3a..6f30360 100644 --- a/src/pl/edu/mimuw/cloudatlas/model/UnsupportedConversionException.java +++ b/src/pl/edu/mimuw/cloudatlas/model/UnsupportedConversionException.java @@ -25,7 +25,7 @@ package pl.edu.mimuw.cloudatlas.model; /** - * An exception describing unsupported conversion of a value to another type. + * An exception describing an unsupported conversion of a value to another type. * * @see IncompatibleTypesException * @see UnsupportedValueOperationException @@ -48,7 +48,7 @@ public class UnsupportedConversionException extends UnsupportedOperationExceptio } /** - * Gets a source type of an unsupported conversion that caused this exception. + * Gets the source type of the unsupported conversion that caused this exception. * * @return source type */ @@ -57,7 +57,7 @@ public class UnsupportedConversionException extends UnsupportedOperationExceptio } /** - * Gets a destination type of an unsupported conversion that caused this exception. + * Gets the destination type of the unsupported conversion that caused this exception. * * @return destination type */ |