1package Prophet::Resolver::Failed;
2{
3  $Prophet::Resolver::Failed::VERSION = '0.751';
4}
5use Any::Moose;
6use Data::Dumper;
7extends 'Prophet::Resolver';
8$Data::Dumper::Indent = 1;
9
10sub run {
11    my $self               = shift;
12    my $conflicting_change = shift;
13    my $conflict           = shift;
14
15    die "The conflict was not resolved! Sorry dude."
16      . Dumper( $conflict, $conflicting_change );
17
18}
19
20__PACKAGE__->meta->make_immutable;
21no Any::Moose;
22
231;
24
25__END__
26
27=pod
28
29=head1 NAME
30
31Prophet::Resolver::Failed
32
33=head1 VERSION
34
35version 0.751
36
37=head1 AUTHORS
38
39=over 4
40
41=item *
42
43Jesse Vincent <jesse@bestpractical.com>
44
45=item *
46
47Chia-Liang Kao <clkao@bestpractical.com>
48
49=item *
50
51Christine Spang <christine@spang.cc>
52
53=back
54
55=head1 COPYRIGHT AND LICENSE
56
57This software is Copyright (c) 2009 by Best Practical Solutions.
58
59This is free software, licensed under:
60
61  The MIT (X11) License
62
63=head1 BUGS AND LIMITATIONS
64
65You can make new bug reports, and view existing ones, through the
66web interface at L<https://rt.cpan.org/Public/Dist/Display.html?Name=Prophet>.
67
68=head1 CONTRIBUTORS
69
70=over 4
71
72=item *
73
74Alex Vandiver <alexmv@bestpractical.com>
75
76=item *
77
78Casey West <casey@geeknest.com>
79
80=item *
81
82Cyril Brulebois <kibi@debian.org>
83
84=item *
85
86Florian Ragwitz <rafl@debian.org>
87
88=item *
89
90Ioan Rogers <ioanr@cpan.org>
91
92=item *
93
94Jonas Smedegaard <dr@jones.dk>
95
96=item *
97
98Kevin Falcone <falcone@bestpractical.com>
99
100=item *
101
102Lance Wicks <lw@judocoach.com>
103
104=item *
105
106Nelson Elhage <nelhage@mit.edu>
107
108=item *
109
110Pedro Melo <melo@simplicidade.org>
111
112=item *
113
114Rob Hoelz <rob@hoelz.ro>
115
116=item *
117
118Ruslan Zakirov <ruz@bestpractical.com>
119
120=item *
121
122Shawn M Moore <sartak@bestpractical.com>
123
124=item *
125
126Simon Wistow <simon@thegestalt.org>
127
128=item *
129
130Stephane Alnet <stephane@shimaore.net>
131
132=item *
133
134Unknown user <nobody@localhost>
135
136=item *
137
138Yanick Champoux <yanick@babyl.dyndns.org>
139
140=item *
141
142franck cuny <franck@lumberjaph.net>
143
144=item *
145
146robertkrimen <robertkrimen@gmail.com>
147
148=item *
149
150sunnavy <sunnavy@bestpractical.com>
151
152=back
153
154=cut
155