Helios++
Helios software for LiDAR simulations
EndOfReadingException.h
1 #pragma once
2 
3 #include <util/HeliosException.h>
4 
5 namespace helios { namespace filems {
6 
16 public:
17  // *** CONSTRUCTION / DESTRUCTION *** //
18  // ************************************ //
23  EndOfReadingException(std::string const &msg = "End of reading exception"):
25  {}
26  virtual ~EndOfReadingException() = default;
27 };
28 
29 }}
Base class for Helios exceptions.
Definition: HeliosException.h:12
std::string const msg
Helios exception message.
Definition: HeliosException.h:19
Class representing the end of reading exception for FMS readers.
Definition: EndOfReadingException.h:15
EndOfReadingException(std::string const &msg="End of reading exception")
End of reading exception constructor.
Definition: EndOfReadingException.h:23