mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-13 15:23:55 +08:00
20 lines
403 B
C++
20 lines
403 B
C++
#pragma once
|
|
|
|
#include "PropertyExceptions.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class SectionPropertyExceptions: public PropertyExceptions
|
|
{
|
|
public:
|
|
/// Parses the bytes to retrieve a SectionPropertyExceptions
|
|
SectionPropertyExceptions( byte* bytes, int size ):
|
|
PropertyExceptions( bytes, size )
|
|
{
|
|
}
|
|
|
|
virtual ~SectionPropertyExceptions()
|
|
{
|
|
}
|
|
};
|
|
} |