mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-12-27 03:14:49 +00:00
7 lines
108 B
C
7 lines
108 B
C
|
#pragma once
|
||
|
#include <exception>
|
||
|
namespace java
|
||
|
{
|
||
|
class classfile_exception : public std::exception {};
|
||
|
}
|