mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 09:59:59 +03:00
6 lines
108 B
C++
6 lines
108 B
C++
#pragma once
|
|
#include <exception>
|
|
namespace java
|
|
{
|
|
class classfile_exception : public std::exception {};
|
|
}
|