From c7795fcd30a6649eede1abac18bcfbfd0ecd0975 Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Wed, 11 Mar 2020 12:07:49 +0100 Subject: Pull changes from common 887a122 and d609df3 --- lib/edi/STIWriter.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/edi/STIWriter.cpp') diff --git a/lib/edi/STIWriter.cpp b/lib/edi/STIWriter.cpp index 389a838..a7e4f20 100644 --- a/lib/edi/STIWriter.cpp +++ b/lib/edi/STIWriter.cpp @@ -95,7 +95,7 @@ void STIWriter::update_edi_time( uint32_t seconds) { if (not m_proto_valid) { - throw std::logic_error("Cannot update time before protocol"); + throw std::runtime_error("Cannot update time before protocol"); } m_utco = utco; @@ -109,15 +109,15 @@ void STIWriter::update_edi_time( void STIWriter::assemble() { if (not m_proto_valid) { - throw std::logic_error("Cannot assemble STI before protocol"); + throw std::runtime_error("Cannot assemble STI before protocol"); } if (not m_management_data_valid) { - throw std::logic_error("Cannot assemble STI before management data"); + throw std::runtime_error("Cannot assemble STI before management data"); } if (not m_payload_valid) { - throw std::logic_error("Cannot assemble STI without frame data"); + throw std::runtime_error("Cannot assemble STI without frame data"); } // TODO check time validity -- cgit v1.2.3