from django.views import View
from django.views.generic import TemplateView

class Error404View(View):
    template_name = 'error_400.html'

class Error405View(View):
    template_name = 'error_400.html'


class Error500View(View):
    template_name = 'error_500.html'
