#ifndef EXTENSIONS_BROWSER_EXTENSION_ERROR_H_
#define EXTENSIONS_BROWSER_EXTENSION_ERROR_H_
#include <stddef.h>
#include <string>
#include <vector>
#include "base/compiler_specific.h"
#include "base/logging.h"
#include "extensions/common/extension_id.h"
#include "extensions/common/stack_frame.h"
#include "url/gurl.h"
namespace extensions {
class ExtensionError { … };
class ManifestError : public ExtensionError { … };
class RuntimeError : public ExtensionError { … };
class InternalError : public ExtensionError { … };
}
#endif