#include "ByteBuffer.h"
◆ ByteBufferPositionException()
      
        
          | ByteBufferPositionException::ByteBufferPositionException | ( | bool | add, | 
        
          |  |  | std::size_t | pos, | 
        
          |  |  | std::size_t | size, | 
        
          |  |  | std::size_t | valueSize | 
        
          |  | ) |  |  | 
      
 
   31{
   32    std::ostringstream ss;
   33 
   34    ss << "Attempted to " << (add ? "put" : "get") << " value with size: "
   35       << valueSize << " in ByteBuffer (pos: " << pos << " size: " << size
   36       << ")";
   37 
   39}
std::string & message() noexcept
Definition ByteBuffer.h:39
References ByteBufferException::message().
 
 
◆ ~ByteBufferPositionException()
  
  | 
        
          | ByteBufferPositionException::~ByteBufferPositionException | ( |  | ) |  |  | overridedefaultnoexcept | 
 
 
The documentation for this class was generated from the following files: