diff options
author | Mathias Stearn <mathias@10gen.com> | 2017-08-10 15:52:33 -0400 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2017-08-16 16:28:02 -0400 |
commit | 347935f7a5d0452146b1a73ad7ef9e249eaf1fb5 (patch) | |
tree | 00b322f5adcf3eb9c2624747a6b5b2179e440052 /src/mongo/util/duration.h | |
parent | cdf7aacb213c99d3ce620761ff46b030bbd7732d (diff) | |
download | mongo-347935f7a5d0452146b1a73ad7ef9e249eaf1fb5.tar.gz |
SERVER-30580 Eliminate UserException and MsgAssertionException types
All users were converted to just use AssertionException.
Diffstat (limited to 'src/mongo/util/duration.h')
-rw-r--r-- | src/mongo/util/duration.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/util/duration.h b/src/mongo/util/duration.h index a040dd38d64..93ab483af89 100644 --- a/src/mongo/util/duration.h +++ b/src/mongo/util/duration.h @@ -97,9 +97,9 @@ using HigherPrecisionDuration = /** * Casts from one Duration precision to another. * - * May throw a UserException if "from" is of lower-precision type and is outside the range of the - * ToDuration. For example, Seconds::max() cannot be represented as a Milliseconds, and - * so attempting to cast that value to Milliseconds will throw an exception. + * May throw a AssertionException if "from" is of lower-precision type and is outside the range of + * the ToDuration. For example, Seconds::max() cannot be represented as a Milliseconds, and so + * attempting to cast that value to Milliseconds will throw an exception. */ template <typename ToDuration, typename FromPeriod> ToDuration duration_cast(const Duration<FromPeriod>& from) { @@ -232,7 +232,7 @@ public: /** * Constructs a higher-precision duration from a lower-precision one, as by duration_cast. * - * Throws a UserException if "from" is out of the range of this duration type. + * Throws a AssertionException if "from" is out of the range of this duration type. * * It is a compilation error to attempt a conversion from higher-precision to lower-precision by * this constructor. |